From 0a99986cc3f365cfdfe3a6605c5346a233f6fbd3 Mon Sep 17 00:00:00 2001 From: minikin Date: Wed, 22 Mar 2023 09:05:03 +0000 Subject: [PATCH] deploy: 6b9191a0ea5dcb6ddef663fd09676d02952714b9 --- ...json => mock_farm_postman_collection.json} | 0 .../api/vitup/mock-farm/v0.yaml | 113 ++++++++++++++++++ ...tion.json => mock_postman_collection.json} | 0 main/03_core_testing/vitup/mock.html | 6 +- main/03_core_testing/vitup/mock_farm.html | 2 +- .../01_catalyst-cardano-bridge/index.html | 4 +- .../hersir/builder/enum.ControllerError.html | 8 +- .../builder/settings/struct.Settings.html | 4 +- .../vote_plan/enum.VotePlanSettings.html | 4 +- .../rust/hersir/builder/struct.Wallet.html | 2 +- .../builder/vote/fn.generate_vote_plans.html | 2 +- .../hersir/config/enum.CommitteeTemplate.html | 4 +- .../hersir/config/enum.WalletTemplate.html | 6 +- .../config/struct.WalletTemplateBuilder.html | 2 +- .../rust/hersir/controller/enum.Error.html | 8 +- .../struct.UserInteractionController.html | 2 +- .../hersir/controller/struct.Controller.html | 2 +- .../controller/struct.MonitorController.html | 2 +- .../struct.UserInteractionController.html | 2 +- .../rust/hersir/error/enum.Error.html | 8 +- .../fn.default_block_date_generator.html | 2 +- .../iapyx/expiry/fn.from_block_or_shift.html | 2 +- .../rust/iapyx/struct.Controller.html | 6 +- .../implementors/core/convert/trait.From.js | 8 +- .../rust/integration_tests/enum.Error.html | 6 +- .../context/struct.ActorsTestContext.html | 2 +- .../fn.create_new_account_address.html | 2 +- .../fn.create_new_delegation_address.html | 2 +- .../fn.create_new_delegation_address_for.html | 2 +- .../startup/fn.create_new_utxo_address.html | 2 +- .../startup/fn.start_stake_pool.html | 2 +- .../struct.SingleNodeTestBootstrapper.html | 2 +- .../enum.AdversaryFragmentSenderError.html | 10 +- .../loki/process/struct.AdversaryNode.html | 2 +- .../loki/struct.AdversaryFragmentSender.html | 2 +- .../struct.AdversaryFragmentSenderSetup.html | 2 +- .../loki/struct.FaultyTransactionBuilder.html | 2 +- .../struct.AdversaryFragmentGenerator.html | 2 +- .../struct.AdversaryVoteCastsGenerator.html | 2 +- .../struct.BatchFragmentGenerator.html | 2 +- .../generators/struct.FragmentGenerator.html | 2 +- .../struct.TransactionGenerator.html | 2 +- .../generators/struct.VoteCastsGenerator.html | 2 +- main/06_rust_api/rust/settings.html | 2 +- .../builders/fn.generate_qr_and_hashes.html | 2 +- .../struct.VitVotePlanDefBuilder.html | 2 +- .../vitup/builders/trait.WalletExtension.html | 2 +- .../rust/vitup/error/enum.Error.html | 10 +- .../vitup/mode/mock/struct.LedgerState.html | 2 +- .../vitup/mode/mock/struct.MockState.html | 2 +- .../mode/standard/struct.VitController.html | 2 +- main/99_example_enhanced_markup.html | 2 +- main/print.html | 14 +-- main/searchindex.js | 2 +- main/searchindex.json | 2 +- 55 files changed, 201 insertions(+), 92 deletions(-) rename main/03_core_testing/api/vitup/mock-farm/{postman_collection.json => mock_farm_postman_collection.json} (100%) create mode 100644 main/03_core_testing/api/vitup/mock-farm/v0.yaml rename main/03_core_testing/api/vitup/mock/{Mock.postman_collection.json => mock_postman_collection.json} (100%) diff --git a/main/03_core_testing/api/vitup/mock-farm/postman_collection.json b/main/03_core_testing/api/vitup/mock-farm/mock_farm_postman_collection.json similarity index 100% rename from main/03_core_testing/api/vitup/mock-farm/postman_collection.json rename to main/03_core_testing/api/vitup/mock-farm/mock_farm_postman_collection.json diff --git a/main/03_core_testing/api/vitup/mock-farm/v0.yaml b/main/03_core_testing/api/vitup/mock-farm/v0.yaml new file mode 100644 index 0000000000..59f214e226 --- /dev/null +++ b/main/03_core_testing/api/vitup/mock-farm/v0.yaml @@ -0,0 +1,113 @@ +openapi: 3.0.2 + +info: + title: Mock farm REST API + description: Mock Farm Rest API v0 + version: 0.0.1 + contact: + url: 'https://github.com/input-output-hk/catalyst-core/tree/main/src/vit-testing/' + +servers: + - url: 'https://localhost' + +tags: + - name: active + - name: start + - name: shutdown + +paths: + '/api/v0/active': + get: + description: Lists active mock environments + operationId: Active + tags: + - active + responses: + '200': + description: Success + content: + application/json: + schema: + description: assigned port number + type: string + format: text + '400': + description: Mock env with given ID or port already exists + + '/api/v0/start/{env_name}': + post: + description: Starts new mock env with random free port + operationId: StartEnvRandomPort + tags: + - start + parameters: + - name: env_name + in: path + required: true + schema: + description: Environment name + type: string + pattern: '[0-9a-f]+' + responses: + '200': + description: Success + content: + application/json: + schema: + description: assigned port number + type: string + format: text + '400': + description: Mock env with given ID or port already exists + + '/api/v0/start/{env_name}/{port}': + post: + description: Starts new mock env with random free port + operationId: StartEnv + tags: + - start + parameters: + - name: env_name + in: path + required: true + schema: + description: Environment name + type: string + pattern: '[0-9a-f]+' + responses: + '200': + description: Success + content: + application/json: + schema: + description: assigned port number + type: string + format: text + '400': + description: Mock env with given ID or port already exists + + '/api/v0/shutdown/{env_name}': + post: + description: Shutdown new mock env with random free port + operationId: ShutdownEnv + tags: + - shutdown + parameters: + - name: env_name + in: path + required: true + schema: + description: Environment name + type: string + pattern: '[0-9a-f]+' + responses: + '200': + description: Success + content: + application/json: + schema: + description: assigned port number + type: string + format: text + '404': + description: Mock env with given ID was not found \ No newline at end of file diff --git a/main/03_core_testing/api/vitup/mock/Mock.postman_collection.json b/main/03_core_testing/api/vitup/mock/mock_postman_collection.json similarity index 100% rename from main/03_core_testing/api/vitup/mock/Mock.postman_collection.json rename to main/03_core_testing/api/vitup/mock/mock_postman_collection.json diff --git a/main/03_core_testing/vitup/mock.html b/main/03_core_testing/vitup/mock.html index 9d1190b2d4..9e7e6e6b4c 100644 --- a/main/03_core_testing/vitup/mock.html +++ b/main/03_core_testing/vitup/mock.html @@ -163,10 +163,8 @@

Configuration

Start

vitup start mock --config example\mock\config.yaml

Admin rest commands

-

For full api specs please visit:

- +

For postman collection please visit:

+

Requests collection

List Files

curl --location --request GET 'http://{mock_address}/api/control/files/list'
 
diff --git a/main/03_core_testing/vitup/mock_farm.html b/main/03_core_testing/vitup/mock_farm.html index dbaa3e11ed..425abfc334 100644 --- a/main/03_core_testing/vitup/mock_farm.html +++ b/main/03_core_testing/vitup/mock_farm.html @@ -173,7 +173,7 @@

Start

Documentation

diff --git a/main/05_unified_platform/01_catalyst-cardano-bridge/index.html b/main/05_unified_platform/01_catalyst-cardano-bridge/index.html index 7406a27c0a..6269fcf1d1 100644 --- a/main/05_unified_platform/01_catalyst-cardano-bridge/index.html +++ b/main/05_unified_platform/01_catalyst-cardano-bridge/index.html @@ -282,10 +282,10 @@

A

Architectural Diagram

-
ContractKey
contract_key: bytes
hash(concat(contract_hash, parameter_hash))
ContractHash
contract_hash : bytes
hash(Contract.as_bytes())
ParameterHash
parameter_hash
hash(Paramters.as_bytes())
Contract
Compiled Wasm
as_bytes()
Parameters
Structured Parameter Data
as_bytes()
+
ContractKey
contract_key: bytes
hash(concat(contract_hash, parameter_hash))
ContractHash
contract_hash : bytes
hash(Contract.as_bytes())
ParameterHash
parameter_hash
hash(Paramters.as_bytes())
Contract
Compiled Wasm
as_bytes()
Parameters
Structured Parameter Data
as_bytes()
-
hunger noticedchoose recipedesired dish?
+
hunger noticedchoose recipedesired dish?

Integration to the Catalyst Unified Backend

The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. diff --git a/main/06_rust_api/rust/hersir/builder/enum.ControllerError.html b/main/06_rust_api/rust/hersir/builder/enum.ControllerError.html index 3936458511..e78a80b044 100644 --- a/main/06_rust_api/rust/hersir/builder/enum.ControllerError.html +++ b/main/06_rust_api/rust/hersir/builder/enum.ControllerError.html @@ -1,6 +1,6 @@ ControllerError in hersir::builder - Rust

pub enum ControllerError {
 
Show 21 variants Node(NodeError), - Wallet(WalletError), + Wallet(WalletError), FsFixture(FixtureError), Io(Error), Reqwest(Error), @@ -14,15 +14,15 @@ Startup(StartupError), CannotSpawnNode(Error), InteractiveCommand(InteractiveCommandError), - FragmentSender(FragmentSenderError), + FragmentSender(FragmentSenderError), Serialization(Error), Legacy(LegacyConfigError), SettingsWallet(Error), Settings(Error), NoExplorerConfigurationDefined, -
}

Variants

Node(NodeError)

Wallet(WalletError)

FsFixture(FixtureError)

Io(Error)

Reqwest(Error)

Explorer(ExplorerError)

BlockFormatError(ReadError)

BlockWriteError(WriteError)

NodeNotFound(String)

WalletNotFound(String)

StakePoolNotFound(String)

VotePlanNotFound(String)

Startup(StartupError)

CannotSpawnNode(Error)

InteractiveCommand(InteractiveCommandError)

FragmentSender(FragmentSenderError)

Serialization(Error)

Legacy(LegacyConfigError)

SettingsWallet(Error)

Settings(Error)

NoExplorerConfigurationDefined

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+
}

Variants

Node(NodeError)

Wallet(WalletError)

FsFixture(FixtureError)

Io(Error)

Reqwest(Error)

Explorer(ExplorerError)

BlockFormatError(ReadError)

BlockWriteError(WriteError)

NodeNotFound(String)

WalletNotFound(String)

StakePoolNotFound(String)

VotePlanNotFound(String)

Startup(StartupError)

CannotSpawnNode(Error)

InteractiveCommand(InteractiveCommandError)

FragmentSender(FragmentSenderError)

Serialization(Error)

Legacy(LegacyConfigError)

SettingsWallet(Error)

Settings(Error)

NoExplorerConfigurationDefined

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/builder/settings/struct.Settings.html b/main/06_rust_api/rust/hersir/builder/settings/struct.Settings.html index 5ec020d8bf..d42953fc45 100644 --- a/main/06_rust_api/rust/hersir/builder/settings/struct.Settings.html +++ b/main/06_rust_api/rust/hersir/builder/settings/struct.Settings.html @@ -4,9 +4,9 @@ pub committees: Vec<CommitteeIdDef>, pub block0: Block0Configuration, pub explorer: Option<ExplorerConfiguration>, - pub stake_pools: HashMap<NodeAlias, StakePool>, + pub stake_pools: HashMap<NodeAlias, StakePool>, pub vote_plans: HashMap<VotePlanKey, VotePlanSettings>, -}

Fields

nodes: HashMap<NodeAlias, NodeSetting>wallets: Vec<Wallet>committees: Vec<CommitteeIdDef>block0: Block0Configurationexplorer: Option<ExplorerConfiguration>stake_pools: HashMap<NodeAlias, StakePool>vote_plans: HashMap<VotePlanKey, VotePlanSettings>

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+}

Fields

nodes: HashMap<NodeAlias, NodeSetting>wallets: Vec<Wallet>committees: Vec<CommitteeIdDef>block0: Block0Configurationexplorer: Option<ExplorerConfiguration>stake_pools: HashMap<NodeAlias, StakePool>vote_plans: HashMap<VotePlanKey, VotePlanSettings>

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/builder/settings/vote_plan/enum.VotePlanSettings.html b/main/06_rust_api/rust/hersir/builder/settings/vote_plan/enum.VotePlanSettings.html index 765d62bd6f..8b11006cdb 100644 --- a/main/06_rust_api/rust/hersir/builder/settings/vote_plan/enum.VotePlanSettings.html +++ b/main/06_rust_api/rust/hersir/builder/settings/vote_plan/enum.VotePlanSettings.html @@ -1,10 +1,10 @@ VotePlanSettings in hersir::builder::settings::vote_plan - Rust
pub enum VotePlanSettings {
     Public(VotePlan),
     Private {
-        keys: CommitteeDataManager,
+        keys: CommitteeDataManager,
         vote_plan: VotePlan,
     },
-}

Variants

Public(VotePlan)

Private

Fields

keys: CommitteeDataManager
vote_plan: VotePlan

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+}

Variants

Public(VotePlan)

Private

Fields

vote_plan: VotePlan

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/builder/struct.Wallet.html b/main/06_rust_api/rust/hersir/builder/struct.Wallet.html index c4b7575634..f43b08ac4e 100644 --- a/main/06_rust_api/rust/hersir/builder/struct.Wallet.html +++ b/main/06_rust_api/rust/hersir/builder/struct.Wallet.html @@ -1,6 +1,6 @@ Wallet in hersir::builder - Rust
pub struct Wallet { /* private fields */ }
Expand description

wallet to utilise when testing jormungandr

This can be used for a faucet

-

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
The type returned in the event of a conversion error.
Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
The type returned in the event of a conversion error.
Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/builder/vote/fn.generate_vote_plans.html b/main/06_rust_api/rust/hersir/builder/vote/fn.generate_vote_plans.html index 6eb585a5ad..792c700f20 100644 --- a/main/06_rust_api/rust/hersir/builder/vote/fn.generate_vote_plans.html +++ b/main/06_rust_api/rust/hersir/builder/vote/fn.generate_vote_plans.html @@ -1 +1 @@ -generate_vote_plans in hersir::builder::vote - Rust
pub fn generate_vote_plans(
    wallets: &[Wallet],
    vote_plans: &[VotePlanTemplate],
    keys: &mut CommitteeDataManager
) -> (HashMap<VotePlanKey, VotePlanSettings>, Vec<Fragment>)
\ No newline at end of file +generate_vote_plans in hersir::builder::vote - Rust
pub fn generate_vote_plans(
    wallets: &[Wallet],
    vote_plans: &[VotePlanTemplate],
    keys: &mut CommitteeDataManager
) -> (HashMap<VotePlanKey, VotePlanSettings>, Vec<Fragment>)
\ No newline at end of file diff --git a/main/06_rust_api/rust/hersir/config/enum.CommitteeTemplate.html b/main/06_rust_api/rust/hersir/config/enum.CommitteeTemplate.html index 33d34b7693..d7de797c84 100644 --- a/main/06_rust_api/rust/hersir/config/enum.CommitteeTemplate.html +++ b/main/06_rust_api/rust/hersir/config/enum.CommitteeTemplate.html @@ -1,6 +1,6 @@ CommitteeTemplate in hersir::config - Rust
pub enum CommitteeTemplate {
     Generated {
-        alias: WalletAlias,
+        alias: WalletAlias,
         member_pk: Option<String>,
         communication_pk: Option<String>,
     },
@@ -9,7 +9,7 @@
         member_pk: Option<String>,
         communication_pk: Option<String>,
     },
-}

Variants

Generated

Fields

alias: WalletAlias
member_pk: Option<String>
communication_pk: Option<String>

External

Fields

id: String
member_pk: Option<String>
communication_pk: Option<String>

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+}

Variants

Generated

Fields

alias: WalletAlias
member_pk: Option<String>
communication_pk: Option<String>

External

Fields

id: String
member_pk: Option<String>
communication_pk: Option<String>

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/config/enum.WalletTemplate.html b/main/06_rust_api/rust/hersir/config/enum.WalletTemplate.html index baf595f464..0b97293ca4 100644 --- a/main/06_rust_api/rust/hersir/config/enum.WalletTemplate.html +++ b/main/06_rust_api/rust/hersir/config/enum.WalletTemplate.html @@ -1,6 +1,6 @@ WalletTemplate in hersir::config - Rust
pub enum WalletTemplate {
     Generated {
-        alias: WalletAlias,
+        alias: WalletAlias,
         value: Value,
         wallet_type: WalletType,
         delegate: Option<NodeAlias>,
@@ -12,10 +12,10 @@
         value: Value,
         tokens: HashMap<TokenIdentifier, u64>,
     },
-}

Variants

Generated

Fields

alias: WalletAlias
value: Value
wallet_type: WalletType
delegate: Option<NodeAlias>
discrimination: Discrimination

Generated wallet when we want let hersir generate new wallet from scratch

+}

Variants

Generated

Fields

alias: WalletAlias
value: Value
wallet_type: WalletType
delegate: Option<NodeAlias>
discrimination: Discrimination

Generated wallet when we want let hersir generate new wallet from scratch

External

Fields

address: String
value: Value

Wallet which was given in configuration by address, thus hersir does not control it, which implies that some operations like delegation in block0 are not available

-

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Converts to this type from the input type.
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used +

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Converts to this type from the input type.
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an diff --git a/main/06_rust_api/rust/hersir/config/struct.WalletTemplateBuilder.html b/main/06_rust_api/rust/hersir/config/struct.WalletTemplateBuilder.html index 9967cb1c14..60f9568893 100644 --- a/main/06_rust_api/rust/hersir/config/struct.WalletTemplateBuilder.html +++ b/main/06_rust_api/rust/hersir/config/struct.WalletTemplateBuilder.html @@ -1,4 +1,4 @@ -WalletTemplateBuilder in hersir::config - Rust
pub struct WalletTemplateBuilder { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+WalletTemplateBuilder in hersir::config - Rust
pub struct WalletTemplateBuilder { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/controller/enum.Error.html b/main/06_rust_api/rust/hersir/controller/enum.Error.html index 61e9ffdcdf..c8c45c5dd5 100644 --- a/main/06_rust_api/rust/hersir/controller/enum.Error.html +++ b/main/06_rust_api/rust/hersir/controller/enum.Error.html @@ -1,6 +1,6 @@ Error in hersir::controller - Rust
pub enum Error {
 
Show 21 variants Node(NodeError), - Wallet(WalletError), + Wallet(WalletError), FsFixture(FixtureError), Io(Error), Reqwest(Error), @@ -14,15 +14,15 @@ Startup(StartupError), CannotSpawnNode(Error), InteractiveCommand(InteractiveCommandError), - FragmentSender(FragmentSenderError), + FragmentSender(FragmentSenderError), Serialization(Error), Legacy(LegacyConfigError), SettingsWallet(Error), Settings(Error), NoExplorerConfigurationDefined, -
}

Variants

Node(NodeError)

Wallet(WalletError)

FsFixture(FixtureError)

Io(Error)

Reqwest(Error)

Explorer(ExplorerError)

BlockFormatError(ReadError)

BlockWriteError(WriteError)

NodeNotFound(String)

WalletNotFound(String)

StakePoolNotFound(String)

VotePlanNotFound(String)

Startup(StartupError)

CannotSpawnNode(Error)

InteractiveCommand(InteractiveCommandError)

FragmentSender(FragmentSenderError)

Serialization(Error)

Legacy(LegacyConfigError)

SettingsWallet(Error)

Settings(Error)

NoExplorerConfigurationDefined

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+
}

Variants

Node(NodeError)

Wallet(WalletError)

FsFixture(FixtureError)

Io(Error)

Reqwest(Error)

Explorer(ExplorerError)

BlockFormatError(ReadError)

BlockWriteError(WriteError)

NodeNotFound(String)

WalletNotFound(String)

StakePoolNotFound(String)

VotePlanNotFound(String)

Startup(StartupError)

CannotSpawnNode(Error)

InteractiveCommand(InteractiveCommandError)

FragmentSender(FragmentSenderError)

Serialization(Error)

Legacy(LegacyConfigError)

SettingsWallet(Error)

Settings(Error)

NoExplorerConfigurationDefined

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/controller/interactive/struct.UserInteractionController.html b/main/06_rust_api/rust/hersir/controller/interactive/struct.UserInteractionController.html index 8cb18fb3de..60ef8c9506 100644 --- a/main/06_rust_api/rust/hersir/controller/interactive/struct.UserInteractionController.html +++ b/main/06_rust_api/rust/hersir/controller/interactive/struct.UserInteractionController.html @@ -1,4 +1,4 @@ -UserInteractionController in hersir::controller::interactive - Rust
pub struct UserInteractionController { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+UserInteractionController in hersir::controller::interactive - Rust
pub struct UserInteractionController { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/controller/struct.Controller.html b/main/06_rust_api/rust/hersir/controller/struct.Controller.html index 0067b6938c..9833d51d20 100644 --- a/main/06_rust_api/rust/hersir/controller/struct.Controller.html +++ b/main/06_rust_api/rust/hersir/controller/struct.Controller.html @@ -1,4 +1,4 @@ -Controller in hersir::controller - Rust
pub struct Controller { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+Controller in hersir::controller - Rust
pub struct Controller { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/controller/struct.MonitorController.html b/main/06_rust_api/rust/hersir/controller/struct.MonitorController.html index 7a0bcb5524..341d7669c5 100644 --- a/main/06_rust_api/rust/hersir/controller/struct.MonitorController.html +++ b/main/06_rust_api/rust/hersir/controller/struct.MonitorController.html @@ -1,4 +1,4 @@ -MonitorController in hersir::controller - Rust
pub struct MonitorController { /* private fields */ }

Implementations

Trait Implementations

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+MonitorController in hersir::controller - Rust
pub struct MonitorController { /* private fields */ }

Implementations

Trait Implementations

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/controller/struct.UserInteractionController.html b/main/06_rust_api/rust/hersir/controller/struct.UserInteractionController.html index 126e690930..59de95a2bc 100644 --- a/main/06_rust_api/rust/hersir/controller/struct.UserInteractionController.html +++ b/main/06_rust_api/rust/hersir/controller/struct.UserInteractionController.html @@ -1,4 +1,4 @@ -UserInteractionController in hersir::controller - Rust
pub struct UserInteractionController { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+UserInteractionController in hersir::controller - Rust
pub struct UserInteractionController { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/hersir/error/enum.Error.html b/main/06_rust_api/rust/hersir/error/enum.Error.html index dda35c6ca9..0020e838ee 100644 --- a/main/06_rust_api/rust/hersir/error/enum.Error.html +++ b/main/06_rust_api/rust/hersir/error/enum.Error.html @@ -3,18 +3,18 @@ InteractiveCommand(InteractiveCommandError), Controller(ControllerError), Verification(VerificationError), - FragmentVerifier(FragmentVerifierError), + FragmentVerifier(FragmentVerifierError), ConsumptionBenchmark(ConsumptionBenchmarkError), Explorer(ExplorerError), - FragmentSender(FragmentSenderError), + FragmentSender(FragmentSenderError), Rest(RestError), IO(Error), Serialization(Error), CircularTrust, Internal(String), -
}

Variants

MonitorNode(NodeError)

InteractiveCommand(InteractiveCommandError)

Controller(ControllerError)

Verification(VerificationError)

FragmentVerifier(FragmentVerifierError)

ConsumptionBenchmark(ConsumptionBenchmarkError)

Explorer(ExplorerError)

FragmentSender(FragmentSenderError)

Rest(RestError)

IO(Error)

Serialization(Error)

CircularTrust

Internal(String)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+
}

Variants

MonitorNode(NodeError)

InteractiveCommand(InteractiveCommandError)

Controller(ControllerError)

Verification(VerificationError)

FragmentVerifier(FragmentVerifierError)

ConsumptionBenchmark(ConsumptionBenchmarkError)

Explorer(ExplorerError)

FragmentSender(FragmentSenderError)

Rest(RestError)

IO(Error)

Serialization(Error)

CircularTrust

Internal(String)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/iapyx/expiry/fn.default_block_date_generator.html b/main/06_rust_api/rust/iapyx/expiry/fn.default_block_date_generator.html index 5e2229a757..b1bb397e0a 100644 --- a/main/06_rust_api/rust/iapyx/expiry/fn.default_block_date_generator.html +++ b/main/06_rust_api/rust/iapyx/expiry/fn.default_block_date_generator.html @@ -1,2 +1,2 @@ -default_block_date_generator in iapyx::expiry - Rust
pub fn default_block_date_generator(
    block0_settings: &SettingsDto
) -> BlockDateGenerator
Expand description

Creates BlockDateGenerator object based on settings

+default_block_date_generator in iapyx::expiry - Rust
pub fn default_block_date_generator(
    block0_settings: &SettingsDto
) -> BlockDateGenerator
Expand description

Creates BlockDateGenerator object based on settings

\ No newline at end of file diff --git a/main/06_rust_api/rust/iapyx/expiry/fn.from_block_or_shift.html b/main/06_rust_api/rust/iapyx/expiry/fn.from_block_or_shift.html index 8c9a285c89..2d1cf22045 100644 --- a/main/06_rust_api/rust/iapyx/expiry/fn.from_block_or_shift.html +++ b/main/06_rust_api/rust/iapyx/expiry/fn.from_block_or_shift.html @@ -1,2 +1,2 @@ -from_block_or_shift in iapyx::expiry - Rust
pub fn from_block_or_shift(
    valid_until_fixed: Option<BlockDate>,
    valid_until_shift: Option<BlockDate>,
    block0_settings: &SettingsDto
) -> BlockDateGenerator
Expand description

Creates BlockDateGenerator object based on setup

+from_block_or_shift in iapyx::expiry - Rust
pub fn from_block_or_shift(
    valid_until_fixed: Option<BlockDate>,
    valid_until_shift: Option<BlockDate>,
    block0_settings: &SettingsDto
) -> BlockDateGenerator
Expand description

Creates BlockDateGenerator object based on setup

\ No newline at end of file diff --git a/main/06_rust_api/rust/iapyx/struct.Controller.html b/main/06_rust_api/rust/iapyx/struct.Controller.html index b6b4529b12..da0a0e90fd 100644 --- a/main/06_rust_api/rust/iapyx/struct.Controller.html +++ b/main/06_rust_api/rust/iapyx/struct.Controller.html @@ -2,13 +2,13 @@ pub backend: ValgrindClient, pub wallet: Wallet, pub settings: Settings, - pub block_date_generator: BlockDateGenerator, + pub block_date_generator: BlockDateGenerator, }
Expand description

Responsible for all wallet operations from voting to retrieving information about proposals or voting power

Fields

backend: ValgrindClient

Catalyst backend client

wallet: Wallet

Wallet state

settings: Settings

Cached blockchain settings

-
block_date_generator: BlockDateGenerator

Expiry date generator

+
block_date_generator: BlockDateGenerator

Expiry date generator

Implementations

Connects to new backend

Errors

On connectivity issues

@@ -20,7 +20,7 @@
Errors

On connection issues

Panics

On internal error in which vec does not hold transaction

-

Sets transaction ttl definition. Usually when we are sending some fragments we need to define how long +

Sets transaction ttl definition. Usually when we are sending some fragments we need to define how long we want to wait until it will be put in block. BlockDateGenerator helps us define ttl without calculating it each time

Sends collection of raw transaction bytes

diff --git a/main/06_rust_api/rust/implementors/core/convert/trait.From.js b/main/06_rust_api/rust/implementors/core/convert/trait.From.js index 71a796a724..49d655fe07 100644 --- a/main/06_rust_api/rust/implementors/core/convert/trait.From.js +++ b/main/06_rust_api/rust/implementors/core/convert/trait.From.js @@ -14,17 +14,17 @@ "explorer":[["impl From<StakeDelegation> for Certificate"],["impl From<OwnerStakeDelegation> for Certificate"],["impl From<PoolRegistration> for Certificate"],["impl From<PoolRetirement> for Certificate"],["impl From<PoolUpdate> for Certificate"],["impl From<VotePlan> for Certificate"],["impl From<VoteCast> for Certificate"],["impl From<VoteTally> for Certificate"],["impl From<UpdateProposal> for Certificate"],["impl From<UpdateVote> for Certificate"],["impl From<MintToken> for Certificate"],["impl From<EvmMapping> for Certificate"],["impl From<Certificate> for Certificate"],["impl From<StakeDelegation> for StakeDelegation"],["impl From<OwnerStakeDelegation> for OwnerStakeDelegation"],["impl From<PoolRegistration> for PoolRegistration"],["impl From<PoolRetirement> for PoolRetirement"],["impl From<PoolUpdate> for PoolUpdate"],["impl From<VotePlan> for VotePlan"],["impl From<VoteCast> for VoteCast"],["impl From<UpdateProposal> for UpdateProposal"],["impl From<UpdateVote> for UpdateVote"],["impl From<EvmMapping> for EvmMapping"],["impl From<&Block0Date> for Block0Date"],["impl From<DiscriminationEnum> for Value"],["impl From<&Discrimination> for Discrimination"],["impl From<ConsensusTypeEnum> for Value"],["impl From<&ConsensusType> for ConsensusType"],["impl From<&u32> for SlotsPerEpoch"],["impl From<&u8> for SlotDuration"],["impl From<&u32> for EpochStabilityDepth"],["impl From<&Milli> for Milli"],["impl From<&u32> for BlockContentMaxSize"],["impl From<&BftLeaderId> for AddBftLeader"],["impl From<&BftLeaderId> for RemoveBftLeader"],["impl From<&PerCertificateFee> for PerCertificateFee"],["impl From<&PerVoteCertificateFee> for PerVoteCertificateFee"],["impl From<&LinearFee> for LinearFee"],["impl From<&u32> for ProposalExpiration"],["impl From<&u32> for KesUpdateSpeed"],["impl From<&Value> for TreasuryAdd"],["impl From<&TaxType> for TreasuryParams"],["impl From<&Value> for RewardPot"],["impl From<LinearRewardParams> for RewardParamsUnion"],["impl From<HalvingRewardParams> for RewardParamsUnion"],["impl From<&RewardParams> for RewardParams"],["impl From<&bool> for FeesInTreasury"],["impl From<&Ratio> for RewardLimitByAbsoluteStake"],["impl From<&(NonZeroU32, NonZeroU32)> for PoolRewardParticipationCapping"],["impl From<&CommitteeId> for AddCommitteeId"],["impl From<&CommitteeId> for RemoveCommitteeId"],["impl From<&u8> for TransactionMaxExpiryEpochs"],["impl From<Block0Date> for ConfigParam"],["impl From<Discrimination> for ConfigParam"],["impl From<ConsensusType> for ConfigParam"],["impl From<SlotsPerEpoch> for ConfigParam"],["impl From<SlotDuration> for ConfigParam"],["impl From<EpochStabilityDepth> for ConfigParam"],["impl From<Milli> for ConfigParam"],["impl From<BlockContentMaxSize> for ConfigParam"],["impl From<AddBftLeader> for ConfigParam"],["impl From<RemoveBftLeader> for ConfigParam"],["impl From<LinearFee> for ConfigParam"],["impl From<ProposalExpiration> for ConfigParam"],["impl From<KesUpdateSpeed> for ConfigParam"],["impl From<TreasuryAdd> for ConfigParam"],["impl From<TreasuryParams> for ConfigParam"],["impl From<RewardPot> for ConfigParam"],["impl From<RewardParams> for ConfigParam"],["impl From<PerCertificateFee> for ConfigParam"],["impl From<FeesInTreasury> for ConfigParam"],["impl From<RewardLimitNone> for ConfigParam"],["impl From<RewardLimitByAbsoluteStake> for ConfigParam"],["impl From<PoolRewardParticipationCapping> for ConfigParam"],["impl From<AddCommitteeId> for ConfigParam"],["impl From<RemoveCommitteeId> for ConfigParam"],["impl From<PerVoteCertificateFee> for ConfigParam"],["impl From<TransactionMaxExpiryEpochs> for ConfigParam"],["impl From<&ConfigParam> for ConfigParam"],["impl From<&ConfigParams> for ConfigParams"],["impl From<PayloadType> for Value"],["impl From<&PublicKey<Ed25519>> for PublicKey"],["impl From<TimeOffsetSeconds> for TimeOffsetSeconds"],["impl From<u32> for IndexCursor"],["impl From<IndexCursor> for String"],["impl From<DigestOf<Blake2b256, VotePlan>> for VotePlanId"],["impl From<PayloadType> for PayloadType"],["impl From<Options> for VoteOptionRange"],["impl From<u64> for IndexCursor"],["impl From<ChainLength> for IndexCursor"],["impl From<DigestOf<Blake2b256, ExternalProposalDocument>> for ExternalProposalId"],["impl<T: Borrow<Weight>> From<T> for Weight"],["impl From<u64> for VotePlanCount"],["impl From<u32> for VotePlanCount"],["impl From<u64> for VoteStatusCount"],["impl From<u64> for Value"],["impl From<BftLeaderId> for BftLeader"],["impl From<Pool> for Leader"],["impl From<BftLeader> for Leader"],["impl From<Arc<ExplorerBlock>> for Block"],["impl From<BlockDate> for BlockDate"],["impl From<&ExplorerAddress> for Address"],["impl From<VotePayloadPublicStatus> for VotePayloadStatus"],["impl From<VotePayloadPrivateStatus> for VotePayloadStatus"],["impl From<TallyPublicStatus> for TallyStatus"],["impl From<TallyPrivateStatus> for TallyStatus"],["impl From<ExplorerVoteTally> for TallyStatus"],["impl From<BlockNotFound> for ExplorerError"],["impl From<Error> for IndexerError"],["impl From<Error> for IndexerError"],["impl From<Error> for IndexerError"],["impl From<ParseError> for IndexerError"],["impl From<ExplorerError> for IndexerError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<IndexerError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<BootstrapError> for Error"]], "explorer_client":[["impl From<ExplorerError> for Error"],["impl From<Error> for Error"]], "hdkeygen":[["impl From<[u8; 32]> for AccountId"],["impl From<AccountId> for PublicKey<Ed25519>"]], -"hersir":[["impl From<Wallet> for Inner"],["impl From<WalletTemplate> for Wallet"],["impl From<Error> for Error"],["impl From<WalletError> for Error"],["impl From<FixtureError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ExplorerError> for Error"],["impl From<ReadError> for Error"],["impl From<WriteError> for Error"],["impl From<StartupError> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ReadError> for Error"],["impl From<RestError> for Error"],["impl From<ScanError> for Error"],["impl From<MockClientError> for Error"],["impl From<StartupError> for Error"],["impl From<MonitorController> for InnerController"],["impl From<Error> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FragmentVerifierError> for Error"],["impl From<ConsumptionBenchmarkError> for Error"],["impl From<ExplorerError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<RestError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"]], +"hersir":[["impl From<Wallet> for Inner"],["impl From<WalletTemplate> for Wallet"],["impl From<Error> for Error"],["impl From<WalletError> for Error"],["impl From<FixtureError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ExplorerError> for Error"],["impl From<ReadError> for Error"],["impl From<WriteError> for Error"],["impl From<StartupError> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ReadError> for Error"],["impl From<RestError> for Error"],["impl From<ScanError> for Error"],["impl From<MockClientError> for Error"],["impl From<StartupError> for Error"],["impl From<MonitorController> for InnerController"],["impl From<Error> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FragmentVerifierError> for Error"],["impl From<ConsumptionBenchmarkError> for Error"],["impl From<ExplorerError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<RestError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"]], "iapyx":[["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ImageError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<RestError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for ControllerError"],["impl From<Error> for ControllerError"],["impl From<Error> for ControllerError"],["impl From<RestError> for ControllerError"],["impl From<ParseAccountIdentifierError> for ControllerError"],["impl From<Error> for ControllerError"],["impl From<MultiController> for Vec<Wallet>"],["impl From<Error> for MultiControllerError"],["impl From<Error> for MultiControllerError"],["impl From<ControllerError> for MultiControllerError"],["impl From<Error> for MultiControllerError"],["impl From<Error> for MultiControllerError"],["impl From<Error> for MultiControllerError"],["impl From<Error> for MultiControllerError"],["impl From<RestError> for Error"],["impl From<MultiControllerError> for Error"],["impl From<MultiControllerError> for Error"],["impl From<RestError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<KeyQrCodeError> for Error"],["impl From<ImageError> for Error"],["impl From<BadPinError> for Error"],["impl From<Error> for Error"]], "iapyx_load":[["impl From<Error> for IapyxLoadCommandError"],["impl From<MultiControllerError> for IapyxLoadCommandError"],["impl From<Error> for IapyxLoadCommandError"],["impl From<Error> for IapyxLoadCommandError"],["impl From<Error> for IapyxLoadCommandError"],["impl From<Error> for IapyxLoadCommandError"]], -"integration_tests":[["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<ControllerError> for Error"]], +"integration_tests":[["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<ControllerError> for Error"]], "jcli_lib":[["impl From<Error> for Error"],["impl From<Block0ConfigurationError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<CertificateFromStrError> for Error"],["impl From<CertificateFromBech32Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VotePlanError> for Error"],["impl From<SharesError> for Error"],["impl From<DecryptedPrivateTallyError> for Error"],["impl From<UnitVectorInitializationError> for Error"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<SecretKeyError> for Error"],["impl From<PublicKeyError> for Error"],["impl From<SignatureError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<DerivationError> for Error"],["impl From<ReadError> for Error"],["impl From<WriteError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<Error> for Error"],["impl From<ReadYamlError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ValueError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<DecodeError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<TallyError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VotePlanError> for Error"],["impl From<SharesError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for ReadYamlError"],["impl From<Error> for ReadYamlError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<PathBuf> for OutputFile"],["impl From<FormatVariant> for OutputFormat"],["impl<'a> From<&'a str> for FormatVariant"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<GtmplError> for Error"],["impl From<Error> for VotePlanError"],["impl From<Error> for VotePlanError"],["impl From<Error> for SharesError"],["impl From<Error> for SharesError"],["impl From<DecryptionError> for SharesError"],["impl From<Vec<TallyDecryptShare, Global>> for MemberVotePlanShares"],["impl From<Error> for Error"]], "jormungandr":[["impl From<Error> for Block0Error"],["impl From<Block0Malformed> for Block0Error"],["impl From<ReadError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Block0Error> for Error"],["impl From<Error> for Error"],["impl From<SendError> for Error"],["impl From<TrySendError<TransactionMsg>> for Error"],["impl From<Checkpoints> for Vec<HeaderHash>"],["impl From<Error> for Error"],["impl From<Canceled> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<LedgerError> for Error"],["impl From<Box<TrySendError<TransactionMsg>, Global>> for Error"],["impl From<Box<Error, Global>> for Error"],["impl From<Box<Error, Global>> for Error"],["impl From<Error> for Error"],["impl From<PublicKeyFromStrError> for Error"],["impl From<Error> for Error"],["impl From<TrySendError<TransactionMsg>> for Error"],["impl From<SendError> for Error"],["impl From<ValueError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FromHexError> for Error"],["impl From<FromConfigParamError> for Error"],["impl From<Error> for NodeSecretFromFileError"],["impl From<Error> for NodeSecretFromFileError"],["impl From<Error> for PeerResolveError"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ParseError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Box<Error, Global>> for Error"],["impl From<Block0Error> for Error"],["impl From<FetchBlockError> for Error"],["impl From<NodeSecretFromFileError> for Error"],["impl From<ServiceError> for Error"],["impl From<DiagnosticError> for Error"],["impl From<Error> for Error"],["impl From<Gossip> for Gossip"],["impl From<Gossip> for Gossip"],["impl From<Vec<Gossip, Global>> for Gossips"],["impl From<Gossips> for Vec<Gossip>"],["impl From<Vec<Gossip, Global>> for Gossips"],["impl From<Identifier<Ed25519>> for NodeId"],["impl From<NodeId> for NodeId"],["impl From<Gossip> for PeerInfo"],["impl From<Error> for Error"],["impl<T> From<TrySendError<T>> for Error"]], "jormungandr_automation":[["impl From<KeyPair<Ed25519>> for SecretModelFactory"],["impl From<Error> for ExplorerError"],["impl From<Error> for ExplorerError"],["impl From<Error> for FragmentNodeError"],["impl From<Hash> for MemPoolCheck"],["impl From<Error> for Error"],["impl From<FixtureError> for Error"],["impl From<NodeState> for Status"],["impl From<JormungandrError> for ShutdownError"],["impl From<Error> for ShutdownError"],["impl From<Error> for RestError"],["impl From<Error> for RestError"],["impl From<Error> for RestError"],["impl From<Error> for RestError"],["impl From<ReadError> for RestError"],["impl From<PathBuf> for TestingDirectory"],["impl From<Option<PathBuf>> for TestingDirectory"],["impl From<ProcessError> for StartupError"],["impl From<FixtureError> for StartupError"],["impl From<Error> for StartupError"],["impl From<JormungandrError> for StartupError"],["impl From<Error> for StartupError"],["impl From<RestError> for StartupError"],["impl From<ConsensusType> for ProtocolVersion"],["impl From<Error> for SyncNodeError"],["impl From<MeasurementReportInterval> for u32"],["impl From<SyncWaitParams> for Thresholds<Speed>"],["impl From<Error> for Block0Error"],["impl From<Block0ConfigurationError> for Block0Error"],["impl From<Error> for Block0Error"],["impl From<WriteError> for Block0Error"],["impl From<ReadError> for Block0Error"],["impl From<Error> for Block0Error"],["impl From<Error> for Block0Error"],["impl From<Error> for Block0Error"],["impl From<Error> for Block0Error"],["impl From<StakePool> for StakePoolLib"]], "jormungandr_integration_tests":[["impl From<Version> for LegacySingleNodeTestBootstrapper"]], "jormungandr_lib":[["impl From<Error> for SigningKeyParseError"],["impl From<Error> for SigningKeyParseError"],["impl From<SecretKey<Ed25519>> for SigningKey"],["impl From<SecretKey<Ed25519Extended>> for SigningKey"],["impl From<PublicKey<Ed25519>> for Identifier"],["impl From<Identifier> for Identifier"],["impl From<Identifier<Ed25519>> for Identifier"],["impl From<Blake2b256> for Hash"],["impl From<Hash> for Blake2b256"],["impl From<Hash> for Hash"],["impl From<Hash> for Hash"],["impl From<[u8; 32]> for Hash"],["impl<T> From<DigestOf<Blake2b256, T>> for Hash"],["impl<T> From<Hash> for DigestOf<Blake2b256, T>"],["impl From<Hash> for [u8; 32]"],["impl<A: AsymmetricKey> From<SecretKey<A>> for SigningKey<A>"],["impl<A: AsymmetricKey> From<SigningKey<A>> for SecretKey<A>"],["impl<A: AsymmetricPublicKey> From<PublicKey<A>> for Identifier<A>"],["impl<T, A: VerificationAlgorithm> From<Signature<T, A>> for Signature<T, A>"],["impl From<Error> for ParseAccountIdentifierError"],["impl From<AccountIdentifier> for AccountIdentifier"],["impl From<AccountIdentifier> for AccountIdentifier"],["impl From<UnspecifiedAccountIdentifier> for AccountIdentifier"],["impl<E> From<AccountState<E>> for AccountState"],["impl<'a, E> From<&'a AccountState<E>> for AccountState"],["impl From<Address> for Address"],["impl From<Address> for Address"],["impl From<ActiveSlotCoefficient> for ConfigParam"],["impl From<u32> for BlockContentMaxSize"],["impl From<BlockContentMaxSize> for BlockContentSize"],["impl From<u32> for EpochStabilityDepth"],["impl From<EpochStabilityDepth> for u32"],["impl From<FeesGoTo> for ConfigParam"],["impl From<BlockchainConfiguration> for ConfigParams"],["impl From<InitialUTxO> for Destination"],["impl From<KesUpdateSpeed> for ConfigParam"],["impl From<ConsensusLeaderId> for ConfigParam"],["impl From<Identifier<Ed25519>> for ConsensusLeaderId"],["impl From<PublicKey<Ed25519>> for ConsensusLeaderId"],["impl From<BftLeaderId> for ConsensusLeaderId"],["impl From<ConsensusLeaderId> for BftLeaderId"],["impl From<NumberOfSlotsPerEpoch> for ConfigParam"],["impl From<NumberOfSlotsPerEpoch> for u32"],["impl From<u32> for ProposalExpiration"],["impl From<ProposalExpiration> for u32"],["impl From<SlotDuration> for ConfigParam"],["impl From<SlotDuration> for u8"],["impl From<BlockDate> for BlockDate"],["impl From<BlockDate> for BlockDate"],["impl From<WriteError> for CertificateToBech32Error"],["impl From<Error> for CertificateToBech32Error"],["impl From<Error> for CertificateFromBech32Error"],["impl From<ReadError> for CertificateFromBech32Error"],["impl From<CertificateFromBech32Error> for CertificateFromStrError"],["impl From<Error> for CertificateFromStrError"],["impl From<Certificate> for Certificate"],["impl From<Certificate> for Certificate"],["impl From<SignedCertificate> for SignedCertificate"],["impl From<SignedCertificate> for SignedCertificate"],["impl From<CommitteeIdDef> for CommitteeId"],["impl From<CommitteeId> for CommitteeIdDef"],["impl From<[u8; 32]> for CommitteeIdDef"],["impl From<usize> for PoolMaxEntries"],["impl From<PoolMaxEntries> for usize"],["impl From<usize> for LogMaxEntries"],["impl From<LogMaxEntries> for usize"],["impl From<String> for CorsOrigin"],["impl From<TryFromNumberOfSlotsPerEpochError> for FromConfigParamError"],["impl From<TryFromSlotDurationError> for FromConfigParamError"],["impl From<TryFromFeesGoToError> for FromConfigParamError"],["impl From<TryFromActiveSlotCoefficientError> for FromConfigParamError"],["impl From<TryFromKesUpdateSpeedError> for FromConfigParamError"],["impl From<ConfigParams> for ConfigParamsLib"],["impl From<ConfigParam> for ConfigParamLib"],["impl From<EvmTransaction> for EvmTransaction"],["impl From<EvmTransaction> for EvmTransaction"],["impl From<Fragment> for FragmentDef"],["impl From<FragmentDef> for Fragment"],["impl From<TokenIdentifier> for TokenIdentifier"],["impl From<TokenIdentifier> for TokenIdentifier"],["impl From<Addr> for OldAddress"],["impl From<OldAddress> for Addr"],["impl From<ParseIntError> for ParseRatioError"],["impl From<Ratio> for Ratio"],["impl From<Ratio> for Ratio"],["impl From<RewardParams> for RewardParamsStd"],["impl From<RewardParams> for RewardParams"],["impl From<Stake> for Stake"],["impl From<Stake> for Stake"],["impl From<u64> for Stake"],["impl From<Stake> for u64"],["impl From<TaxType> for TaxType"],["impl From<TaxType> for TaxType"],["impl From<TimeEraDef> for TimeEra"],["impl From<TransactionInput> for Input"],["impl From<Input> for TransactionInput"],["impl From<Output<Address>> for TransactionOutput"],["impl From<TransactionOutput> for Output<Address>"],["impl From<Witness> for TransactionWitness"],["impl From<TransactionWitness> for Witness"],["impl<'a> From<Entry<'a, Address>> for UTxOInfo"],["impl From<Value> for Value"],["impl From<Value> for Value"],["impl From<u64> for Value"],["impl From<Value> for u64"],["impl From<PayloadType> for VotePrivacy"],["impl From<VotePrivacy> for PayloadType"],["impl From<VotePlan> for VotePlan"],["impl From<VotePlan> for VotePlan"],["impl From<Payload> for VotePayload"],["impl From<TallyResult> for TallyResult"],["impl From<Tally> for TallyResult"],["impl From<TallyResult> for TallyResult"],["impl From<Tally> for Tally"],["impl From<Tally> for Tally"],["impl From<VoteProposalStatus> for VoteProposalStatus"],["impl From<VoteProposalStatus> for VoteProposalStatus"],["impl From<VotePlanStatus> for VotePlanStatus"],["impl From<VotePlanStatus> for VotePlanStatus"],["impl From<SystemTime> for SystemTime"],["impl From<SystemTime> for SystemTime"],["impl From<SystemTime> for SecondsSinceUnixEpoch"],["impl From<Duration> for Duration"],["impl From<Duration> for Duration"],["impl From<SecondsSinceUnixEpoch> for SystemTime"],["impl From<SystemTime> for SecondsSinceUnixEpoch"]], "jortestkit":[["impl From<Error> for DecompressError"],["impl From<ZipError> for DecompressError"],["impl From<Error> for InteractiveCommandError"],["impl From<Error> for GitHubApiError"],["impl From<FromHexError> for GitHubApiError"],["impl From<WebError> for GitHubApiError"],["impl From<Error> for GitHubApiError"],["impl<T> From<T> for RayonWrapper<T>"],["impl From<Duration> for Endurance"],["impl From<Endurance> for Duration"],["impl From<Duration> for Speed"],["impl From<u32> for Counter"],["impl From<SystemTime> for Timestamp"],["impl From<Duration> for Wait"],["impl From<&[u8]> for APIToken"],["impl From<DecodeError> for TokenError"],["impl From<Error> for WebError"],["impl From<Error> for WebError"]], -"loki":[["impl From<Error> for Error"],["impl From<ReadError> for Error"],["impl From<Error> for Error"],["impl From<Block0ConfigurationError> for Error"],["impl From<FragmentBuilderError> for AdversaryFragmentSenderError"],["impl From<FragmentNodeError> for AdversaryFragmentSenderError"],["impl From<FragmentVerifierError> for AdversaryFragmentSenderError"],["impl From<FragmentExporterError> for AdversaryFragmentSenderError"],["impl From<SyncNodeError> for AdversaryFragmentSenderError"]], +"loki":[["impl From<Error> for Error"],["impl From<ReadError> for Error"],["impl From<Error> for Error"],["impl From<Block0ConfigurationError> for Error"],["impl From<FragmentBuilderError> for AdversaryFragmentSenderError"],["impl From<FragmentNodeError> for AdversaryFragmentSenderError"],["impl From<FragmentVerifierError> for AdversaryFragmentSenderError"],["impl From<FragmentExporterError> for AdversaryFragmentSenderError"],["impl From<SyncNodeError> for AdversaryFragmentSenderError"]], "mainnet_lib":[["impl From<Error> for Error"],["impl From<JsonConversionError> for Error"],["impl From<JsError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<PublicKeyFromStrError> for Error"],["impl From<JsError> for Error"],["impl From<Error> for JsonConversionError"],["impl From<JsError> for JsonConversionError"]], "mainnet_tools":[["impl From<TryFromIntError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"]], "mjolnir":[["impl From<MjolnirError> for ClientLoadCommandError"],["impl From<RestError> for MjolnirError"],["impl From<StartupError> for MjolnirError"],["impl From<JormungandrError> for MjolnirError"],["impl From<Block0Error> for MjolnirError"],["impl From<MjolnirError> for ExplorerLoadCommandError"],["impl From<MjolnirError> for FragmentLoadCommandError"],["impl From<MjolnirError> for RestLoadCommandError"]], @@ -40,7 +40,7 @@ "vit_servicing_station_lib":[["impl From<&Goal> for InsertGoal"],["impl From<LogLevel> for LevelFilter"],["impl From<LogLevel> for LevelFilter"],["impl From<&[u8]> for ApiToken"],["impl From<Error> for HandleError"]], "vit_servicing_station_server":[["impl From<Error> for ConfigTracingError"],["impl From<TryInitError> for ConfigTracingError"],["impl From<TraceError> for ConfigTracingError"]], "vit_servicing_station_tests":[["impl From<&ServiceSettings> for RestClient"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<FundDates> for FundInfo"],["impl From<VotePlanDef> for SingleVotePlanParameters"],["impl From<CurrentFund> for ValidVotePlanParameters"],["impl From<Error> for TemplateLoad"],["impl From<Error> for DbInserterError"],["impl From<RawSnapshot> for RepsVotersAssigner"],["impl From<RawSnapshot> for RawSnapshotUpdater"],["impl From<SnapshotInfo> for VotingPower"],["impl From<Snapshot> for SnapshotUpdater"],["impl From<VarError> for DbBuilderError"],["impl From<DbInserterError> for DbBuilderError"],["impl From<ConnectionError> for DbBuilderError"],["impl From<RunMigrationsError> for DbBuilderError"],["impl From<Error> for ServerBootstrapperError"],["impl From<CargoError> for ServerBootstrapperError"],["impl From<DbBuilderError> for ServerBootstrapperError"]], -"vitup":[["impl From<ParseError> for Error"],["impl From<&TempDir> for DeploymentTree"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ParseFloatError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<JoinError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<SetGlobalDefaultError> for Error"],["impl From<Error> for Error"],["impl From<TemplateLoad> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VitupRest> for VitupDisruptionRestClient"],["impl From<VitupRest> for VitupAdminRestClient"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VoteBlockchainTime> for VoteTime"],["impl From<Error> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<Error> for Error"],["impl From<Parse> for Error"],["impl From<Block0Error> for Error"],["impl From<Error> for Error"],["impl From<WalletError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<FragmentVerifierError> for Error"],["impl From<Error> for Error"],["impl From<ConsumptionBenchmarkError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<TemplateLoad> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ImageError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Block0ConfigurationError> for Error"],["impl From<ServerBootstrapperError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<GlobError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Block0Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<SetGlobalDefaultError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<DbBuilderError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<RestError> for Error"],["impl From<ScanError> for Error"],["impl From<MockClientError> for Error"]], +"vitup":[["impl From<ParseError> for Error"],["impl From<&TempDir> for DeploymentTree"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ParseFloatError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<JoinError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<SetGlobalDefaultError> for Error"],["impl From<Error> for Error"],["impl From<TemplateLoad> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VitupRest> for VitupDisruptionRestClient"],["impl From<VitupRest> for VitupAdminRestClient"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<VoteBlockchainTime> for VoteTime"],["impl From<Error> for Error"],["impl From<InteractiveCommandError> for Error"],["impl From<Error> for Error"],["impl From<Parse> for Error"],["impl From<Block0Error> for Error"],["impl From<Error> for Error"],["impl From<WalletError> for Error"],["impl From<FragmentSenderError> for Error"],["impl From<FragmentVerifierError> for Error"],["impl From<Error> for Error"],["impl From<ConsumptionBenchmarkError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<TemplateLoad> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<ImageError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Block0ConfigurationError> for Error"],["impl From<ServerBootstrapperError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<GlobError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Block0Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<SetGlobalDefaultError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<DbBuilderError> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<Error> for Error"],["impl From<RestError> for Error"],["impl From<ScanError> for Error"],["impl From<MockClientError> for Error"]], "voting_tools_rs":[["impl From<u64> for SlotNo"],["impl From<u64> for VotingPurpose"],["impl From<VotingPurpose> for OsStr"],["impl From<InMemoryDbSync> for MockDbProvider"]], "wallet":[["impl From<Error> for Error"],["impl From<Vec<u8, Global>> for ScrubbedBytes"],["impl From<String> for ScrubbedBytes"]], "wallet_core":[["impl From<TimeEra> for TimeEra"],["impl From<BlockDate> for BlockDate"],["impl From<BlockDate> for BlockDate"],["impl From<Error> for Result"],["impl From<Result<(), Error>> for Result"]], diff --git a/main/06_rust_api/rust/integration_tests/enum.Error.html b/main/06_rust_api/rust/integration_tests/enum.Error.html index e42dae15bb..bba211296a 100644 --- a/main/06_rust_api/rust/integration_tests/enum.Error.html +++ b/main/06_rust_api/rust/integration_tests/enum.Error.html @@ -1,11 +1,11 @@ Error in integration_tests - Rust
pub enum Error {
     VitupError(Error),
     VerificationError(VerificationError),
-    FragmentSenderError(FragmentSenderError),
+    FragmentSenderError(FragmentSenderError),
     IapyxError(ControllerError),
-}

Variants

VitupError(Error)

VerificationError(VerificationError)

FragmentSenderError(FragmentSenderError)

IapyxError(ControllerError)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+}

Variants

VitupError(Error)

VerificationError(VerificationError)

FragmentSenderError(FragmentSenderError)

IapyxError(ControllerError)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more
The type of the wrapped error after instrumentation
Instrument an Error by bundling it with a SpanTrace Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/context/struct.ActorsTestContext.html b/main/06_rust_api/rust/jormungandr_integration_tests/context/struct.ActorsTestContext.html index 98b2295607..efdd296d4f 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/context/struct.ActorsTestContext.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/context/struct.ActorsTestContext.html @@ -1,4 +1,4 @@ -ActorsTestContext in jormungandr_integration_tests::context - Rust
pub struct ActorsTestContext { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+ActorsTestContext in jormungandr_integration_tests::context - Rust
pub struct ActorsTestContext { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_account_address.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_account_address.html index 0a9f199cab..35dd844b49 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_account_address.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_account_address.html @@ -1 +1 @@ -create_new_account_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_account_address() -> Wallet
\ No newline at end of file +create_new_account_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_account_address() -> Wallet
\ No newline at end of file diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address.html index 28d26f6bda..196be812d1 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address.html @@ -1 +1 @@ -create_new_delegation_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_delegation_address() -> Wallet
\ No newline at end of file +create_new_delegation_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_delegation_address() -> Wallet
\ No newline at end of file diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address_for.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address_for.html index 7390e7325d..4f01498778 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address_for.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_delegation_address_for.html @@ -1 +1 @@ -create_new_delegation_address_for in jormungandr_integration_tests::startup - Rust
pub fn create_new_delegation_address_for(
    delegation_identifier: &Identifier<Ed25519>
) -> Wallet
\ No newline at end of file +create_new_delegation_address_for in jormungandr_integration_tests::startup - Rust
pub fn create_new_delegation_address_for(
    delegation_identifier: &Identifier<Ed25519>
) -> Wallet
\ No newline at end of file diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_utxo_address.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_utxo_address.html index 4db87f09af..0b3231247c 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_utxo_address.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.create_new_utxo_address.html @@ -1 +1 @@ -create_new_utxo_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_utxo_address() -> Wallet
\ No newline at end of file +create_new_utxo_address in jormungandr_integration_tests::startup - Rust
pub fn create_new_utxo_address() -> Wallet
\ No newline at end of file diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.start_stake_pool.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.start_stake_pool.html index 2f4a88ad58..383927cff8 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.start_stake_pool.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/fn.start_stake_pool.html @@ -1 +1 @@ -start_stake_pool in jormungandr_integration_tests::startup - Rust
pub fn start_stake_pool(
    owners: &[Wallet],
    initial_funds: &[Wallet],
    block0_config: Block0ConfigurationBuilder,
    node_config_builder: NodeConfigBuilder
) -> Result<(JormungandrProcess, Vec<StakePool>), StartupError>
\ No newline at end of file +start_stake_pool in jormungandr_integration_tests::startup - Rust
pub fn start_stake_pool(
    owners: &[Wallet],
    initial_funds: &[Wallet],
    block0_config: Block0ConfigurationBuilder,
    node_config_builder: NodeConfigBuilder
) -> Result<(JormungandrProcess, Vec<StakePool>), StartupError>
\ No newline at end of file diff --git a/main/06_rust_api/rust/jormungandr_integration_tests/startup/struct.SingleNodeTestBootstrapper.html b/main/06_rust_api/rust/jormungandr_integration_tests/startup/struct.SingleNodeTestBootstrapper.html index 09f76c66f2..e903f7de75 100644 --- a/main/06_rust_api/rust/jormungandr_integration_tests/startup/struct.SingleNodeTestBootstrapper.html +++ b/main/06_rust_api/rust/jormungandr_integration_tests/startup/struct.SingleNodeTestBootstrapper.html @@ -1,4 +1,4 @@ -SingleNodeTestBootstrapper in jormungandr_integration_tests::startup - Rust
pub struct SingleNodeTestBootstrapper { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+SingleNodeTestBootstrapper in jormungandr_integration_tests::startup - Rust
pub struct SingleNodeTestBootstrapper { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/loki/enum.AdversaryFragmentSenderError.html b/main/06_rust_api/rust/loki/enum.AdversaryFragmentSenderError.html index c89f5e3e4e..ceffc1602e 100644 --- a/main/06_rust_api/rust/loki/enum.AdversaryFragmentSenderError.html +++ b/main/06_rust_api/rust/loki/enum.AdversaryFragmentSenderError.html @@ -5,16 +5,16 @@ block: Hash, logs: Vec<String>, }, - FragmentBuilderError(FragmentBuilderError), + FragmentBuilderError(FragmentBuilderError), SendFragmentError(FragmentNodeError), - FragmentVerifierError(FragmentVerifierError), - FragmentExporterError(FragmentExporterError), + FragmentVerifierError(FragmentVerifierError), + FragmentExporterError(FragmentExporterError), SyncNodeError(SyncNodeError), }
Expand description

Send malformed transactions Only supports account based wallets

-

Variants

FragmentNotRejected

Fields

alias: String
date: BlockDate
block: Hash
logs: Vec<String>

FragmentBuilderError(FragmentBuilderError)

SendFragmentError(FragmentNodeError)

FragmentVerifierError(FragmentVerifierError)

FragmentExporterError(FragmentExporterError)

SyncNodeError(SyncNodeError)

Implementations

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+

Variants

FragmentNotRejected

Fields

alias: String
date: BlockDate
block: Hash
logs: Vec<String>

FragmentBuilderError(FragmentBuilderError)

SendFragmentError(FragmentNodeError)

FragmentVerifierError(FragmentVerifierError)

FragmentExporterError(FragmentExporterError)

SyncNodeError(SyncNodeError)

Implementations

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/loki/process/struct.AdversaryNode.html b/main/06_rust_api/rust/loki/process/struct.AdversaryNode.html index 85a0e1e10e..5b08981788 100644 --- a/main/06_rust_api/rust/loki/process/struct.AdversaryNode.html +++ b/main/06_rust_api/rust/loki/process/struct.AdversaryNode.html @@ -6,7 +6,7 @@

In the future, we may be interested in this node being interchangeable with JormungandrProcess in terms of functionalities, but we start from what is currently needed.

-

Implementations

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+

Implementations

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/loki/struct.AdversaryFragmentSender.html b/main/06_rust_api/rust/loki/struct.AdversaryFragmentSender.html index 949c9d03af..91efa49a49 100644 --- a/main/06_rust_api/rust/loki/struct.AdversaryFragmentSender.html +++ b/main/06_rust_api/rust/loki/struct.AdversaryFragmentSender.html @@ -1,4 +1,4 @@ -AdversaryFragmentSender in loki - Rust
pub struct AdversaryFragmentSender<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+AdversaryFragmentSender in loki - Rust
pub struct AdversaryFragmentSender<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/loki/struct.AdversaryFragmentSenderSetup.html b/main/06_rust_api/rust/loki/struct.AdversaryFragmentSenderSetup.html index 16db447e3c..78c835e1a3 100644 --- a/main/06_rust_api/rust/loki/struct.AdversaryFragmentSenderSetup.html +++ b/main/06_rust_api/rust/loki/struct.AdversaryFragmentSenderSetup.html @@ -2,7 +2,7 @@ pub verify: bool, pub sync_nodes: Vec<&'a A>, pub dump_fragments: Option<PathBuf>, -}

Fields

verify: boolsync_nodes: Vec<&'a A>dump_fragments: Option<PathBuf>

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+}

Fields

verify: boolsync_nodes: Vec<&'a A>dump_fragments: Option<PathBuf>

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/loki/struct.FaultyTransactionBuilder.html b/main/06_rust_api/rust/loki/struct.FaultyTransactionBuilder.html index 816a429ea3..01f7c0e9f7 100644 --- a/main/06_rust_api/rust/loki/struct.FaultyTransactionBuilder.html +++ b/main/06_rust_api/rust/loki/struct.FaultyTransactionBuilder.html @@ -1,4 +1,4 @@ -FaultyTransactionBuilder in loki - Rust
pub struct FaultyTransactionBuilder { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+FaultyTransactionBuilder in loki - Rust
pub struct FaultyTransactionBuilder { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryFragmentGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryFragmentGenerator.html index 21d65418f4..e40f5ee505 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryFragmentGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryFragmentGenerator.html @@ -1,4 +1,4 @@ -AdversaryFragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct AdversaryFragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+AdversaryFragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct AdversaryFragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryVoteCastsGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryVoteCastsGenerator.html index 9284dd7424..51694a64ae 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryVoteCastsGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.AdversaryVoteCastsGenerator.html @@ -1,4 +1,4 @@ -AdversaryVoteCastsGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct AdversaryVoteCastsGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+AdversaryVoteCastsGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct AdversaryVoteCastsGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.BatchFragmentGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.BatchFragmentGenerator.html index 8243dd5400..85fb06a0f8 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.BatchFragmentGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.BatchFragmentGenerator.html @@ -1,4 +1,4 @@ -BatchFragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct BatchFragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+BatchFragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct BatchFragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.FragmentGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.FragmentGenerator.html index 7df31ff999..ac05ab6286 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.FragmentGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.FragmentGenerator.html @@ -1,4 +1,4 @@ -FragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct FragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+FragmentGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct FragmentGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.TransactionGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.TransactionGenerator.html index dfa736e660..f734f2dbf2 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.TransactionGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.TransactionGenerator.html @@ -1,4 +1,4 @@ -TransactionGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct TransactionGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+TransactionGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct TransactionGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.VoteCastsGenerator.html b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.VoteCastsGenerator.html index 38d2682adb..34e07f608d 100644 --- a/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.VoteCastsGenerator.html +++ b/main/06_rust_api/rust/mjolnir/mjolnir_lib/generators/struct.VoteCastsGenerator.html @@ -1,4 +1,4 @@ -VoteCastsGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct VoteCastsGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+VoteCastsGenerator in mjolnir::mjolnir_lib::generators - Rust
pub struct VoteCastsGenerator<'a, S: SyncNode + Send> { /* private fields */ }

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/settings.html b/main/06_rust_api/rust/settings.html index 64c7071ecc..bce38b49cf 100644 --- a/main/06_rust_api/rust/settings.html +++ b/main/06_rust_api/rust/settings.html @@ -1 +1 @@ -Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file +Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file diff --git a/main/06_rust_api/rust/vitup/builders/fn.generate_qr_and_hashes.html b/main/06_rust_api/rust/vitup/builders/fn.generate_qr_and_hashes.html index 22e0bc9dcc..b57d0bf0d7 100644 --- a/main/06_rust_api/rust/vitup/builders/fn.generate_qr_and_hashes.html +++ b/main/06_rust_api/rust/vitup/builders/fn.generate_qr_and_hashes.html @@ -1 +1 @@ -generate_qr_and_hashes in vitup::builders - Rust
pub fn generate_qr_and_hashes<P: AsRef<Path>>(
    wallets: Vec<(&WalletAlias, Wallet)>,
    initials: &HashMap<WalletTemplate, String>,
    parameters: &Config,
    folder: P
) -> Result<(), Error>
\ No newline at end of file +generate_qr_and_hashes in vitup::builders - Rust
pub fn generate_qr_and_hashes<P: AsRef<Path>>(
    wallets: Vec<(&WalletAlias, Wallet)>,
    initials: &HashMap<WalletTemplate, String>,
    parameters: &Config,
    folder: P
) -> Result<(), Error>
\ No newline at end of file diff --git a/main/06_rust_api/rust/vitup/builders/struct.VitVotePlanDefBuilder.html b/main/06_rust_api/rust/vitup/builders/struct.VitVotePlanDefBuilder.html index 331f1c4d83..0e548b3a19 100644 --- a/main/06_rust_api/rust/vitup/builders/struct.VitVotePlanDefBuilder.html +++ b/main/06_rust_api/rust/vitup/builders/struct.VitVotePlanDefBuilder.html @@ -1,4 +1,4 @@ -VitVotePlanDefBuilder in vitup::builders - Rust
pub struct VitVotePlanDefBuilder { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+VitVotePlanDefBuilder in vitup::builders - Rust
pub struct VitVotePlanDefBuilder { /* private fields */ }

Implementations

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/vitup/builders/trait.WalletExtension.html b/main/06_rust_api/rust/vitup/builders/trait.WalletExtension.html index 2012f743e7..d0bd174d64 100644 --- a/main/06_rust_api/rust/vitup/builders/trait.WalletExtension.html +++ b/main/06_rust_api/rust/vitup/builders/trait.WalletExtension.html @@ -1,4 +1,4 @@ WalletExtension in vitup::builders - Rust
pub trait WalletExtension {
     fn save_qr_code<P: AsRef<Path>>(&self, path: P, password: &[u8]);
     fn save_qr_code_hash<P: AsRef<Path>>(&self, path: P, password: &[u8]);
-}

Required Methods

Implementations on Foreign Types

Implementors

\ No newline at end of file +}

Required Methods

Implementations on Foreign Types

Implementors

\ No newline at end of file diff --git a/main/06_rust_api/rust/vitup/error/enum.Error.html b/main/06_rust_api/rust/vitup/error/enum.Error.html index 0894f2f419..adf80f8b1a 100644 --- a/main/06_rust_api/rust/vitup/error/enum.Error.html +++ b/main/06_rust_api/rust/vitup/error/enum.Error.html @@ -4,9 +4,9 @@ ParseTime(Parse), Block0Error(Block0Error), Node(NodeError), - Wallet(WalletError), - FragmentSender(FragmentSenderError), - FragmentVerifier(FragmentVerifierError), + Wallet(WalletError), + FragmentSender(FragmentSenderError), + FragmentVerifier(FragmentVerifierError), VerificationFailed(VerificationError), MonitorResourcesError(ConsumptionBenchmarkError), VitStationControllerError(VitStationControllerError), @@ -61,9 +61,9 @@ group: String, }, SetGlobalDefault(SetGlobalDefaultError), -
}

Variants

Interactive(InteractiveCommandError)

IoError(Error)

ParseTime(Parse)

Block0Error(Block0Error)

Node(NodeError)

Wallet(WalletError)

FragmentSender(FragmentSenderError)

FragmentVerifier(FragmentVerifierError)

VerificationFailed(VerificationError)

MonitorResourcesError(ConsumptionBenchmarkError)

VitStationControllerError(VitStationControllerError)

WalletProxyError(WalletProxyError)

TemplateLoadError(TemplateLoad)

SerdeError(Error)

SerdeYamlError(Error)

Block0EncodeError(Error)

ImageReadError(ImageError)

MockError(MockError)

ClientRestError(Error)

Block0ConfigurationError(Block0ConfigurationError)

VitServerBootstrapperError(ServerBootstrapperError)

VitRestError(RestError)

ChainAddressError(Error)

ChainBech32Error(Error)

GlobError(GlobError)

ValgrindError(Error)

ImportError(ImportError)

Validate(ValidateError)

ControllerError(Error)

Block0(Block0Error)

Builder(Error)

Certs(Error)

Data(DataError)

Main(VitControllerError)

WalletProxyController(WalletProxyControllerError)

CannotFindSnapshotFile(PathBuf)

CannotFindConfig(PathBuf)

SyncTimeoutOccurred

Fields

info: String
timeout: Duration

AssertionFailed

Fields

info: String

TransactionNotInBlock

Fields

node: String

ProxyNotFound

Fields

alias: String

UnknownLogLevel(String)

EnvironmentIsDown

SnapshotIntialReadError

NoChallengeIdFound

Fields

proposal_id: String

NoChallengeIdAndGroupFound

Fields

id: String
group: String

SetGlobalDefault(SetGlobalDefaultError)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

+
}

Variants

Interactive(InteractiveCommandError)

IoError(Error)

ParseTime(Parse)

Block0Error(Block0Error)

Node(NodeError)

Wallet(WalletError)

FragmentSender(FragmentSenderError)

FragmentVerifier(FragmentVerifierError)

VerificationFailed(VerificationError)

MonitorResourcesError(ConsumptionBenchmarkError)

VitStationControllerError(VitStationControllerError)

WalletProxyError(WalletProxyError)

TemplateLoadError(TemplateLoad)

SerdeError(Error)

SerdeYamlError(Error)

Block0EncodeError(Error)

ImageReadError(ImageError)

MockError(MockError)

ClientRestError(Error)

Block0ConfigurationError(Block0ConfigurationError)

VitServerBootstrapperError(ServerBootstrapperError)

VitRestError(RestError)

ChainAddressError(Error)

ChainBech32Error(Error)

GlobError(GlobError)

ValgrindError(Error)

ImportError(ImportError)

Validate(ValidateError)

ControllerError(Error)

Block0(Block0Error)

Builder(Error)

Certs(Error)

Data(DataError)

Main(VitControllerError)

WalletProxyController(WalletProxyControllerError)

CannotFindSnapshotFile(PathBuf)

CannotFindConfig(PathBuf)

SyncTimeoutOccurred

Fields

info: String
timeout: Duration

AssertionFailed

Fields

info: String

TransactionNotInBlock

Fields

node: String

ProxyNotFound

Fields

alias: String

UnknownLogLevel(String)

EnvironmentIsDown

SnapshotIntialReadError

NoChallengeIdFound

Fields

proposal_id: String

NoChallengeIdAndGroupFound

Fields

id: String
group: String

SetGlobalDefault(SetGlobalDefaultError)

Trait Implementations

Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
👎Deprecated since 1.42.0:

use the Display impl or to_string()

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

-
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+
🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more
The type of the wrapped error after instrumentation
Instrument an Error by bundling it with a SpanTrace Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/vitup/mode/mock/struct.LedgerState.html b/main/06_rust_api/rust/vitup/mode/mock/struct.LedgerState.html index 261dbd3963..75646d19ea 100644 --- a/main/06_rust_api/rust/vitup/mode/mock/struct.LedgerState.html +++ b/main/06_rust_api/rust/vitup/mode/mock/struct.LedgerState.html @@ -1,4 +1,4 @@ -LedgerState in vitup::mode::mock - Rust
pub struct LedgerState { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+LedgerState in vitup::mode::mock - Rust
pub struct LedgerState { /* private fields */ }

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/vitup/mode/mock/struct.MockState.html b/main/06_rust_api/rust/vitup/mode/mock/struct.MockState.html index 5c4ef389d0..08adf2dbe7 100644 --- a/main/06_rust_api/rust/vitup/mode/mock/struct.MockState.html +++ b/main/06_rust_api/rust/vitup/mode/mock/struct.MockState.html @@ -2,7 +2,7 @@ pub available: bool, pub error_code: u16, /* private fields */ -}

Fields

available: boolerror_code: u16

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+}

Fields

available: boolerror_code: u16

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/06_rust_api/rust/vitup/mode/standard/struct.VitController.html b/main/06_rust_api/rust/vitup/mode/standard/struct.VitController.html index a99fdd03e0..667c57e2a9 100644 --- a/main/06_rust_api/rust/vitup/mode/standard/struct.VitController.html +++ b/main/06_rust_api/rust/vitup/mode/standard/struct.VitController.html @@ -1,4 +1,4 @@ -VitController in vitup::mode::standard - Rust
pub struct VitController { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

+VitController in vitup::mode::standard - Rust
pub struct VitController { /* private fields */ }

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

diff --git a/main/99_example_enhanced_markup.html b/main/99_example_enhanced_markup.html index 85c2f874e3..3c4e1d6852 100644 --- a/main/99_example_enhanced_markup.html +++ b/main/99_example_enhanced_markup.html @@ -229,7 +229,7 @@

-
Can help
Anyone
Go to https://github.com/input-output-hk/catalyst-core
How to contribute?
Reporting bugs
Sharing ideas
Advocating
+
Can help
Anyone
Go to https://github.com/input-output-hk/catalyst-core
How to contribute?
Reporting bugs
Sharing ideas
Advocating

diff --git a/main/print.html b/main/print.html index 249b37dd72..e056a858a7 100644 --- a/main/print.html +++ b/main/print.html @@ -6212,10 +6212,8 @@

Configurati

Start

vitup start mock --config example\mock\config.yaml

Admin rest commands

-

For full api specs please visit:

- +

For postman collection please visit:

+

Requests collection

List Files

curl --location --request GET 'http://{mock_address}/api/control/files/list'
 
@@ -6423,7 +6421,7 @@

Start

Documentation

Configuration modes

In order to take out the burden of providing entire configuration vitup has two configuration modes:

@@ -6751,10 +6749,10 @@

A

Architectural Diagram

-
ContractKey
contract_key: bytes
hash(concat(contract_hash, parameter_hash))
ContractHash
contract_hash : bytes
hash(Contract.as_bytes())
ParameterHash
parameter_hash
hash(Paramters.as_bytes())
Contract
Compiled Wasm
as_bytes()
Parameters
Structured Parameter Data
as_bytes()
+
ContractKey
contract_key: bytes
hash(concat(contract_hash, parameter_hash))
ContractHash
contract_hash : bytes
hash(Contract.as_bytes())
ParameterHash
parameter_hash
hash(Paramters.as_bytes())
Contract
Compiled Wasm
as_bytes()
Parameters
Structured Parameter Data
as_bytes()
-
hunger noticedchoose recipedesired dish?
+
hunger noticedchoose recipedesired dish?

Integration to the Catalyst Unified Backend

The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. @@ -132506,7 +132504,7 @@

-
Can help
Anyone
Go to https://github.com/input-output-hk/catalyst-core
How to contribute?
Reporting bugs
Sharing ideas
Advocating
+
Can help
Anyone
Go to https://github.com/input-output-hk/catalyst-core
How to contribute?
Reporting bugs
Sharing ideas
Advocating

Suffix

diff --git a/main/searchindex.js b/main/searchindex.js index 53c6b1832d..0243276f9c 100644 --- a/main/searchindex.js +++ b/main/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["00_prologue.html#prologue","01_intro.html#introduction","01_intro.html#what-is-catalyst-core","02_core_ledger/index.html#core-ledger","02_core_ledger/index.html#mythology","02_core_ledger/01_concepts/index.html#general-concepts","02_core_ledger/01_concepts/blockchain.html#blockchain-concepts","02_core_ledger/01_concepts/blockchain.html#time","02_core_ledger/01_concepts/blockchain.html#fragments","02_core_ledger/01_concepts/blockchain.html#blocks","02_core_ledger/01_concepts/blockchain.html#blockchain","02_core_ledger/01_concepts/blockchain.html#consensus","02_core_ledger/01_concepts/blockchain.html#leadership","02_core_ledger/01_concepts/blockchain.html#leader","02_core_ledger/01_concepts/blockchain.html#transaction","02_core_ledger/01_concepts/blockchain.html#accounting","02_core_ledger/01_concepts/network.html#network-overview","02_core_ledger/01_concepts/network.html#the-protocol","02_core_ledger/01_concepts/network.html#type-of-queries","02_core_ledger/01_concepts/network.html#peer-to-peer","02_core_ledger/01_concepts/network.html#multilayered-topology","02_core_ledger/01_concepts/network.html#gossiping","02_core_ledger/01_concepts/network.html#subscription-mechanism","02_core_ledger/01_concepts/network.html#security-and-countermeasures","02_core_ledger/01_concepts/network.html#policy","02_core_ledger/01_concepts/node.html#node-organization","02_core_ledger/01_concepts/node.html#secure-enclave","02_core_ledger/01_concepts/node.html#network","02_core_ledger/01_concepts/node.html#intercommunication-api-grpc","02_core_ledger/01_concepts/node.html#public-api-rest","02_core_ledger/01_concepts/node.html#control-api-rest","02_core_ledger/01_concepts/stake.html#stake","02_core_ledger/01_concepts/stake.html#stake-in-the-account-model","02_core_ledger/01_concepts/stake.html#stake-in-the-utxo-model","02_core_ledger/01_concepts/stake.html#stake-pool","02_core_ledger/01_concepts/stake.html#stake-delegation","02_core_ledger/02_quickstart/index.html#quickstart","02_core_ledger/02_quickstart/index.html#as-a-passive-node-in-an-existing-network","02_core_ledger/02_quickstart/index.html#as-a-node-generating-blocks-in-an-existing-network","02_core_ledger/02_quickstart/index.html#creating-your-own-network","02_core_ledger/02_quickstart/01_command_line.html#command-line-tools","02_core_ledger/02_quickstart/01_command_line.html#installation","02_core_ledger/02_quickstart/01_command_line.html#from-a-release","02_core_ledger/02_quickstart/01_command_line.html#from-source","02_core_ledger/02_quickstart/01_command_line.html#help-and-auto-completion","02_core_ledger/02_quickstart/02_passive_node.html#starting-a-passive-node","02_core_ledger/02_quickstart/02_passive_node.html#the-node-configuration","02_core_ledger/02_quickstart/02_passive_node.html#note","02_core_ledger/02_quickstart/02_passive_node.html#starting-the-node","02_core_ledger/02_quickstart/03_rest_api.html#rest-api","02_core_ledger/02_quickstart/04_explorer.html#explorer-mode","02_core_ledger/02_quickstart/04_explorer.html#configuration","02_core_ledger/02_quickstart/04_explorer.html#cors","02_core_ledger/02_quickstart/04_explorer.html#api","02_core_ledger/02_quickstart/05_leader_candidate.html#how-to-start-a-node-as-a-leader-candidate","02_core_ledger/02_quickstart/05_leader_candidate.html#gathering-data","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-genesis-blockchain","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-bft-blockchain","02_core_ledger/03_configuration/index.html#configuration","02_core_ledger/03_configuration/index.html#node-configuration","02_core_ledger/03_configuration/index.html#advanced","02_core_ledger/03_configuration/index.html#rewards-report","02_core_ledger/03_configuration/index.html#handling-of-time-consuming-transactions","02_core_ledger/03_configuration/leadership.html#leadership","02_core_ledger/03_configuration/logging.html#logging","02_core_ledger/03_configuration/logging.html#example","02_core_ledger/03_configuration/logging.html#output-to-stdout","02_core_ledger/03_configuration/logging.html#output-to-a-file","02_core_ledger/03_configuration/mempool.html#mempool","02_core_ledger/03_configuration/mempool.html#persistent-logs","02_core_ledger/03_configuration/network.html#node-network","02_core_ledger/03_configuration/network.html#rest-interface-configuration","02_core_ledger/03_configuration/network.html#configuring-tls","02_core_ledger/03_configuration/network.html#p2p-configuration","02_core_ledger/03_configuration/network.html#the-trusted-peers","02_core_ledger/03_configuration/network.html#layers","02_core_ledger/03_configuration/network.html#setting-the-public_id","02_core_ledger/03_configuration/network.html#topics_of_interest","02_core_ledger/03_configuration/prometheus.html#prometheus","02_core_ledger/03_configuration/prometheus.html#prerequisites","02_core_ledger/03_configuration/prometheus.html#usage","02_core_ledger/04_jcli/index.html#jcli","02_core_ledger/04_jcli/address.html#address","02_core_ledger/04_jcli/address.html#display-address-info","02_core_ledger/04_jcli/address.html#creating-an-address","02_core_ledger/04_jcli/address.html#address-for-utxo","02_core_ledger/04_jcli/address.html#address-for-account","02_core_ledger/04_jcli/address.html#changing-the-address-prefix","02_core_ledger/04_jcli/certificate.html#certificate","02_core_ledger/04_jcli/certificate.html#building-stake-pool-registration-certificate","02_core_ledger/04_jcli/certificate.html#retiring-a-stake-pool","02_core_ledger/04_jcli/certificate.html#building-stake-pool-delegation-certificate","02_core_ledger/04_jcli/certificate.html#building-update-proposal-certificate","02_core_ledger/04_jcli/certificate.html#building-vote-cast-certificate","02_core_ledger/04_jcli/certificate.html#public-vote-cast","02_core_ledger/04_jcli/certificate.html#private-vote-cast","02_core_ledger/04_jcli/genesis.html#genesis","02_core_ledger/04_jcli/genesis.html#usage","02_core_ledger/04_jcli/genesis.html#subcommands","02_core_ledger/04_jcli/genesis.html#examples","02_core_ledger/04_jcli/genesis.html#encode-a-genesis-file","02_core_ledger/04_jcli/genesis.html#get-the-hash-of-an-encoded-genesis-file","02_core_ledger/04_jcli/key.html#cryptographic-keys","02_core_ledger/04_jcli/key.html#signing-data","02_core_ledger/04_jcli/key.html#verifying-signed-data","02_core_ledger/04_jcli/rest.html#rest","02_core_ledger/04_jcli/rest.html#conventions","02_core_ledger/04_jcli/rest.html#node-stats","02_core_ledger/04_jcli/rest.html#get-utxo","02_core_ledger/04_jcli/rest.html#post-transaction","02_core_ledger/04_jcli/rest.html#get-message-log","02_core_ledger/04_jcli/rest.html#blockchain-tip","02_core_ledger/04_jcli/rest.html#get-block","02_core_ledger/04_jcli/rest.html#get-next-block-id","02_core_ledger/04_jcli/rest.html#get-account-state","02_core_ledger/04_jcli/rest.html#node-settings","02_core_ledger/04_jcli/rest.html#node-shutdown","02_core_ledger/04_jcli/rest.html#get-leaders","02_core_ledger/04_jcli/rest.html#register-leader","02_core_ledger/04_jcli/rest.html#delete-leader","02_core_ledger/04_jcli/rest.html#get-leadership-logs","02_core_ledger/04_jcli/rest.html#get-stake-pools","02_core_ledger/04_jcli/rest.html#get-stake-distribution","02_core_ledger/04_jcli/rest.html#network-stats","02_core_ledger/04_jcli/rest.html#get-stake-pool-details","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-a-specific-epoch","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-some-epochs","02_core_ledger/04_jcli/rest.html#get-voting-committee-members","02_core_ledger/04_jcli/rest.html#get-active-voting-plans-and-proposals","02_core_ledger/04_jcli/transaction.html#transaction","02_core_ledger/04_jcli/transaction.html#transaction-info","02_core_ledger/04_jcli/transaction.html#examples","02_core_ledger/04_jcli/transaction.html#input-utxo","02_core_ledger/04_jcli/transaction.html#destination-address","02_core_ledger/04_jcli/transaction.html#create-a-staging-area","02_core_ledger/04_jcli/transaction.html#add-input","02_core_ledger/04_jcli/transaction.html#example---utxo-address-as-input","02_core_ledger/04_jcli/transaction.html#example---account-address-as-input","02_core_ledger/04_jcli/transaction.html#add-output","02_core_ledger/04_jcli/transaction.html#add-fee-and-change-address","02_core_ledger/04_jcli/transaction.html#sign-the-transaction","02_core_ledger/04_jcli/transaction.html#make-witness","02_core_ledger/04_jcli/transaction.html#add-witness","02_core_ledger/04_jcli/transaction.html#send-the-transaction","02_core_ledger/04_jcli/transaction.html#checking-if-the-transaction-was-accepted","02_core_ledger/04_jcli/vote.html#voting","02_core_ledger/04_jcli/vote.html#creating-committee-keys","02_core_ledger/04_jcli/vote.html#private","02_core_ledger/04_jcli/vote.html#creating-a-vote-plan","02_core_ledger/04_jcli/vote.html#casting-votes","02_core_ledger/04_jcli/vote.html#tallying","02_core_ledger/04_jcli/vote.html#public-vote-plan","02_core_ledger/04_jcli/vote.html#private-vote-plan","02_core_ledger/05_stake_pool/index.html#staking-with-jörmungandr","02_core_ledger/05_stake_pool/delegating_stake.html#delegating-your-stake","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-create-the-delegation-certificate","02_core_ledger/05_stake_pool/delegating_stake.html#for-own-account","02_core_ledger/05_stake_pool/delegating_stake.html#for-any-account","02_core_ledger/05_stake_pool/delegating_stake.html#submitting-to-a-node","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-sign-your-delegation-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#registering-a-stake-pool","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-primitives","02_core_ledger/05_stake_pool/registering_stake_pool.html#vrf-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#kes-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#choosing-the--tax--parameters","02_core_ledger/05_stake_pool/registering_stake_pool.html#so-how-does-this-works","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-options-to-set","02_core_ledger/05_stake_pool/registering_stake_pool.html#creating-a-stake-pool-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#submitting-to-a-node","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retiring-a-stake-pool","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retrieve-stake-pool-id","02_core_ledger/05_stake_pool/retiring_stake_pool.html#creating-a-retirement-certificate","02_core_ledger/05_stake_pool/retiring_stake_pool.html#submitting-to-a-node","02_core_ledger/06_advanced/index.html#advanced","02_core_ledger/06_advanced/01_the_genesis_block.html#genesis-file","02_core_ledger/06_advanced/01_the_genesis_block.html#blockchain_configuration-options","02_core_ledger/06_advanced/01_the_genesis_block.html#initial-options","02_core_ledger/06_advanced/01_the_genesis_block.html#fund-and-legacy_fund-format","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-a-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#how-does-it-work","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#example-of-genesis-file","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#creating-the-block-0","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-the-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#step-by-step-to-start-the-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#script","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-a-genesis-blockchain","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#the-initial-certificates","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#stake-pool-registration","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#delegating-stake","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-the-node","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#test-script","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#how-vote-plans-vote-fragments-and-the-blockchain-transaction-work-and-inter-relate","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#sasha-prokhorenko","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#nicolo-padovani","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#felipe-rosa","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#joaquin-rosales","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#proposalchain_proposal_id","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefano-cunego","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#conor-gannon","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#alex-pozhylenkov","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#spending-counters","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#cameron-mcloughlin","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#dariusz-kijania","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#ognjen-dokmanovic","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefan-rasevic","02_core_ledger/07_specs/index.html#jormungandr-specifications","02_core_ledger/07_specs/migration.html#migration","02_core_ledger/07_specs/migration.html#vocabulary","02_core_ledger/07_specs/migration.html#description","02_core_ledger/07_specs/migration.html#mechanisms","02_core_ledger/07_specs/migration.html#transaction","02_core_ledger/07_specs/migration.html#mainnet-testnet-tests","02_core_ledger/07_specs/migration.html#advantages","02_core_ledger/07_specs/migration.html#historical-data","02_core_ledger/07_specs/network.html#network","02_core_ledger/07_specs/network.html#introduction","02_core_ledger/07_specs/network.html#design-decisions-guidelines","02_core_ledger/07_specs/network.html#node-to-node-communication","02_core_ledger/07_specs/network.html#general-functionality","02_core_ledger/07_specs/network.html#design","02_core_ledger/07_specs/network.html#node-to-client-communication","02_core_ledger/07_specs/network.html#peer-to-peer-network","02_core_ledger/07_specs/network.html#definitions","02_core_ledger/07_specs/network.html#functionalities","02_core_ledger/07_specs/network.html#messages","02_core_ledger/07_specs/network.html#communications-design","02_core_ledger/07_specs/network.html#adversarial-models-considered","02_core_ledger/07_specs/network.html#adversarial-forks","02_core_ledger/07_specs/network.html#flooding-attack","02_core_ledger/07_specs/network.html#anonymity-against-distributed-adversaries","02_core_ledger/07_specs/network.html#man-in-the-middle","02_core_ledger/07_specs/network.html#in-relation-to-ouroboros-genesis","02_core_ledger/08_testing/index.html#testing","02_core_ledger/08_testing/automation.html#jormungandr-automation","02_core_ledger/08_testing/automation.html#build","02_core_ledger/08_testing/automation.html#jcli-testing-api","02_core_ledger/08_testing/automation.html#jormungandr-testing-api","02_core_ledger/08_testing/automation.html#testing","02_core_ledger/08_testing/hersir.html#hersir","02_core_ledger/08_testing/hersir.html#build--install","02_core_ledger/08_testing/hersir.html#quick-start","02_core_ledger/08_testing/hersir.html#configuration","02_core_ledger/08_testing/hersir.html#full-list-of-available-parameters","02_core_ledger/08_testing/hersir.html#full-list-of-available-commands","02_core_ledger/08_testing/integration_tests.html#jormungandr-integration-tests","02_core_ledger/08_testing/integration_tests.html#architecture-of-tests","02_core_ledger/08_testing/integration_tests.html#quick-start","02_core_ledger/08_testing/integration_tests.html#prerequisites","02_core_ledger/08_testing/integration_tests.html#start-tests","02_core_ledger/08_testing/integration_tests.html#tests-categories","02_core_ledger/08_testing/integration_tests.html#how-to-run-all-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-jcli-only-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-endurance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-endurance-tests","02_core_ledger/08_testing/integration_tests.html#frequency","02_core_ledger/08_testing/loki.html#loki","02_core_ledger/08_testing/loki.html#build--install","02_core_ledger/08_testing/loki.html#quick-start","02_core_ledger/08_testing/loki.html#other-possible-operations","02_core_ledger/08_testing/loki.html#api","02_core_ledger/08_testing/mjolnir.html#mjolnir","02_core_ledger/08_testing/mjolnir.html#build--install","02_core_ledger/08_testing/mjolnir.html#quick-start","02_core_ledger/08_testing/mjolnir.html#cli","02_core_ledger/08_testing/mjolnir.html#api","02_core_ledger/08_testing/mjolnir.html#full-list-of-available-commands","02_core_ledger/08_testing/thor.html#thor","02_core_ledger/08_testing/thor.html#build--install","02_core_ledger/08_testing/thor.html#quick-start","02_core_ledger/08_testing/thor.html#cli","02_core_ledger/08_testing/thor.html#api","02_core_ledger/08_testing/thor.html#configuration","02_core_ledger/08_testing/thor.html#full-list-of-available-commands","02_core_ledger/09_internal_design/index.html#internal-design","02_core_ledger/09_internal_design/index.html#tasks","02_core_ledger/09_internal_design/index.html#maintaining-the-blockchains-state","02_core_ledger/09_internal_design/index.html#from-the-block-0","02_core_ledger/09_internal_design/index.html#for-a-block","02_core_ledger/09_internal_design/index.html#epoch-transition","02_core_ledger/09_internal_design/01_auto-start.html#automatic-deployment-of-the-voting-blockchain","02_core_ledger/09_internal_design/01_auto-start.html#overview","02_core_ledger/09_internal_design/01_auto-start.html#configuration","02_core_ledger/09_internal_design/02_permissionless_auth.html#permissionless-auth","03_core_testing/index.html#catalyst-testing-user-guide","03_core_testing/iapyx/index.html#iapyx","03_core_testing/iapyx/iapyx.html#iapyx","03_core_testing/iapyx/iapyx.html#build--install","03_core_testing/iapyx/iapyx.html#quick-start","03_core_testing/iapyx/iapyx.html#cli","03_core_testing/iapyx/iapyx.html#api","03_core_testing/iapyx/iapyx.html#configuration","03_core_testing/iapyx/iapyx.html#full-list-of-available-commands","03_core_testing/iapyx/load.html#iapyx-load","03_core_testing/iapyx/load.html#build--install","03_core_testing/iapyx/load.html#quick-start","03_core_testing/iapyx/load.html#cli","03_core_testing/iapyx/load.html#api","03_core_testing/iapyx/load.html#full-list-of-available-commands","03_core_testing/integration-tests/index.html#integration-tests","03_core_testing/integration-tests/index.html#architecture-of-tests","03_core_testing/integration-tests/index.html#quick-start","03_core_testing/integration-tests/index.html#prerequisites","03_core_testing/integration-tests/index.html#start-tests","03_core_testing/integration-tests/index.html#tests-categories","03_core_testing/integration-tests/index.html#how-to-run-all-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-testnet-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-load-tests","03_core_testing/integration-tests/index.html#how-to-run-network-endurance-tests","03_core_testing/integration-tests/index.html#frequency","03_core_testing/registration-service/index.html#registration-service","03_core_testing/registration-service/index.html#build","03_core_testing/registration-service/index.html#quick-start","03_core_testing/registration-service/index.html#clients","03_core_testing/registration-service/index.html#cli","03_core_testing/registration-service/index.html#api","03_core_testing/registration-service/cli.html#registration-cli","03_core_testing/registration-service/cli.html#build--install","03_core_testing/registration-service/cli.html#quick-start","03_core_testing/registration-service/cli.html#full-list-of-available-commands","03_core_testing/registration-service/configuration.html#configuration","03_core_testing/registration-verify-service/index.html#registration-service","03_core_testing/registration-verify-service/index.html#build","03_core_testing/registration-verify-service/index.html#quick-start","03_core_testing/registration-verify-service/index.html#clients","03_core_testing/registration-verify-service/index.html#cli","03_core_testing/registration-verify-service/index.html#api","03_core_testing/registration-verify-service/cli.html#registration-verify-cli","03_core_testing/registration-verify-service/cli.html#build--install","03_core_testing/registration-verify-service/cli.html#quick-start","03_core_testing/registration-verify-service/cli.html#full-list-of-available-commands","03_core_testing/registration-verify-service/configuration.html#configuration","03_core_testing/snapshot-service/index.html#snapshot-trigger-service","03_core_testing/snapshot-service/index.html#build","03_core_testing/snapshot-service/index.html#quick-start","03_core_testing/snapshot-service/index.html#usage","03_core_testing/snapshot-service/index.html#clients","03_core_testing/snapshot-service/index.html#cli","03_core_testing/snapshot-service/index.html#api","03_core_testing/snapshot-service/cli.html#registration-cli","03_core_testing/snapshot-service/cli.html#build--install","03_core_testing/snapshot-service/cli.html#quick-start","03_core_testing/snapshot-service/cli.html#full-list-of-available-commands","03_core_testing/snapshot-service/configuration.html#configuration","03_core_testing/snapshot-wormhole/index.html#snapshot-wormhole","03_core_testing/snapshot-wormhole/index.html#build","03_core_testing/snapshot-wormhole/index.html#run","03_core_testing/snapshot-wormhole/index.html#quick-start","03_core_testing/snapshot-wormhole/index.html#run-modes","03_core_testing/snapshot-wormhole/configuration.html#configuration","03_core_testing/snapshot-wormhole/configuration.html#snapshot-service","03_core_testing/snapshot-wormhole/configuration.html#servicing-station-service","03_core_testing/snapshot-wormhole/configuration.html#parameters","03_core_testing/valgrind/index.html#valgrind","03_core_testing/valgrind/index.html#build","03_core_testing/valgrind/index.html#quick-start","03_core_testing/valgrind/index.html#client","03_core_testing/valgrind/configuration.html#configuration","03_core_testing/vitup/index.html#vitup","03_core_testing/vitup/index.html#build","03_core_testing/vitup/index.html#quick-start","03_core_testing/vitup/configuration.html#configuration","03_core_testing/vitup/configuration.html#serdedefault","03_core_testing/vitup/data_generation/index.html#data-generation","03_core_testing/vitup/data_generation/reset.html#configuration","03_core_testing/vitup/data_generation/reset.html#initials","03_core_testing/vitup/data_generation/reset.html#snapshot","03_core_testing/vitup/data_generation/reset.html#block0","03_core_testing/vitup/data_generation/reset.html#snapshot-1","03_core_testing/vitup/data_generation/reset.html#vote-plan","03_core_testing/vitup/data_generation/reset.html#vote-time","03_core_testing/vitup/data_generation/reset.html#example","03_core_testing/vitup/data_generation/reset.html#data","03_core_testing/vitup/data_generation/reset.html#current-fund","03_core_testing/vitup/data_generation/reset.html#next-funds","03_core_testing/vitup/data_generation/reset.html#service","03_core_testing/vitup/data_generation/reset.html#version","03_core_testing/vitup/data_generation/reset.html#https","03_core_testing/vitup/data_generation/reset.html#full-example","03_core_testing/vitup/data_generation/snapshot.html#configuration","03_core_testing/vitup/data_generation/snapshot.html#example","03_core_testing/vitup/data_generation/snapshot.html#parameters","03_core_testing/vitup/data_generation/snapshot.html#content","03_core_testing/vitup/data_generation/snapshot.html#actor","03_core_testing/vitup/data_generation.html#data-generation","03_core_testing/vitup/mock.html#mock","03_core_testing/vitup/mock.html#configuration","03_core_testing/vitup/mock.html#start","03_core_testing/vitup/mock.html#admin-rest-commands","03_core_testing/vitup/mock.html#admin-cli","03_core_testing/vitup/mock_farm.html#mock-farm","03_core_testing/vitup/mock_farm.html#configuration","03_core_testing/vitup/mock_farm.html#start","03_core_testing/vitup/mock_farm.html#documentation","03_core_testing/vitup/run_modes.html#configuration-modes","03_core_testing/vitup/run_modes.html#run-modes","03_core_testing/vitup/run_modes.html#endless-mode","03_core_testing/vitup/run_modes.html#service-mode","03_core_testing/vitup/run_modes.html#admin-operations","03_core_testing/vitup/run_modes.html#how-to-send-operations","03_core_testing/vitup/run_modes.html#check-environment-status","03_core_testing/vitup/run_modes.html#start-environment","03_core_testing/vitup/run_modes.html#list-files","03_core_testing/vitup/run_modes.html#get-files","03_core_testing/vitup/run_modes.html#interactive-mode","04_core_vitss/index.html#core-vit-servicing-station","04_core_vitss/testing.html#vit-servicing-station-tests","04_core_vitss/testing.html#quick-start","04_core_vitss/testing.html#prerequisites","04_core_vitss/testing.html#start-tests","04_core_vitss/testing.html#tests-categories","04_core_vitss/testing.html#how-to-run-all-functional-tests","04_core_vitss/testing.html#how-to-run-performance-tests","04_core_vitss/testing.html#how-to-run-endurance-tests","04_core_vitss/testing.html#frequency","05_unified_platform/index.html#unified-platform","05_unified_platform/01_catalyst-cardano-bridge/index.html#overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#issues-with-the-previous-systems","05_unified_platform/01_catalyst-cardano-bridge/index.html#the-solution","05_unified_platform/01_catalyst-cardano-bridge/index.html#architecture-overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#architectural-diagram","05_unified_platform/01_catalyst-cardano-bridge/index.html#integration-to-the-catalyst-unified-backend","05_unified_platform/01_catalyst-cardano-bridge/01_cardano_nodes.html#cardano-nodes","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/index.html#bridge-pipeline","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/01_block_reader.html#block-reader","05_unified_platform/01_catalyst-cardano-bridge/03_rest_http_service.html#rest-http-service","05_unified_platform/01_catalyst-cardano-bridge/04_event_stream.html#event-stream","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#database","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#servers","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#high-level-data-design","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#registrations-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#current-voter-registration","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#all-current-voter-registrations","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-ada-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#all-current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-balances-for-a-period","05_unified_platform/01_catalyst-cardano-bridge/05_database/03_transaction_state.html#transaction-state-database","06_rust_api/index.html#rust-api","06_rust_api/rust_api.html#rust-api-documentation-and-packages","06_rust_api/rust_api.html#blockchain","06_rust_api/rust_api.html#db-sync-explorer","06_rust_api/rust_api.html#explorer---explorer-service-for-jormungandr","06_rust_api/rust_api.html#integration-tests","06_rust_api/rust_api.html#jormungandr---midgard-serpent","06_rust_api/rust_api.html#jormungandrwallet","06_rust_api/rust_api.html#mjolnir","06_rust_api/rust_api.html#settings","06_rust_api/rust_api.html#sparse-array","06_rust_api/rust_api.html#vit-servicing-station-cli","06_rust_api/rust_api.html#vit-servicing-station-server","06_rust_api/rust_api.html#wallet-wasm-js---wallet-functionalities-to-interact-with-jörmungandr--this-package-profiles-all-that-is-needed-to-have-an-healthy-and-secure-interaction-with-jörmungandr-blockchain-technology","06_rust_api/rust_style_guide.html#-rust-style-guide","06_rust_api/rust_style_guide.html#toolchain","06_rust_api/rust_style_guide.html#basic-rules","06_rust_api/rust_style_guide.html#creating-a-new-crate","06_rust_api/rust_style_guide.html#exceptions-for-clippy","06_rust_api/rust_style_guide.html#guidelines","06_rust_api/rust_style_guide.html#prefer-references-over-generics","06_rust_api/rust_style_guide.html#abbreviations-and-naming-things","06_rust_api/rust_style_guide.html#pay-attention-to-the-public-api-of-your-crate","06_rust_api/rust_style_guide.html#type-safety","06_rust_api/rust_style_guide.html#use-newtypes-aka-microtypes","06_rust_api/rust_style_guide.html#dont-over-abstract","06_rust_api/rust_style_guide.html#unsafe-code","06_rust_api/rust_style_guide.html#docs","06_rust_api/rust_style_guide.html#doctests","06_rust_api/rust_style_guide.html#write-code-as-if-its-going-to-be-in-a-web-server","06_rust_api/rust_style_guide.html#error-handling","06_rust_api/rust_style_guide.html#handling-expected-errors","07_web_api/index.html#web-api","07_web_api/dbsync-explorer.html#dbsync-explorer-httprest-api-v1","07_web_api/vit-servicing-station-v0.html#vit-servicing-station-httprest-api-v0","07_web_api/vit-testing-mock-farm-v0.html#vit-testing-mock-farm-httprest-api-v0","07_web_api/vit-testing-mock-v0.html#vit-testing-mock-httprest-api-v0","07_web_api/vote-ledger-v0.html#vote-ledger-httprest-api-v0","07_web_api/vote-ledger-v1.html#vote-ledger-httprest-api-v1","97_CONTRIBUTING.html#contributing-to-catalyst-core","97_CONTRIBUTING.html#table-of-contents","97_CONTRIBUTING.html#code-of-conduct","97_CONTRIBUTING.html#i-have-a-question","97_CONTRIBUTING.html#i-want-to-contribute","97_CONTRIBUTING.html#legal-notice","97_CONTRIBUTING.html#reporting-bugs","97_CONTRIBUTING.html#suggesting-enhancements","97_CONTRIBUTING.html#your-first-code-contribution","97_CONTRIBUTING.html#improving-the-documentation","97_CONTRIBUTING.html#styleguides","97_CONTRIBUTING.html#commit-messages","98_CODE_OF_CONDUCT.html#contributor-covenant-code-of-conduct","98_CODE_OF_CONDUCT.html#our-pledge","98_CODE_OF_CONDUCT.html#our-standards","98_CODE_OF_CONDUCT.html#enforcement-responsibilities","98_CODE_OF_CONDUCT.html#scope","98_CODE_OF_CONDUCT.html#enforcement","98_CODE_OF_CONDUCT.html#enforcement-guidelines","98_CODE_OF_CONDUCT.html#1-correction","98_CODE_OF_CONDUCT.html#2-warning","98_CODE_OF_CONDUCT.html#3-temporary-ban","98_CODE_OF_CONDUCT.html#4-permanent-ban","98_CODE_OF_CONDUCT.html#attribution","99_example_enhanced_markup.html#example-enhanced-markup","99_example_enhanced_markup.html#example-rendered-diagrams","ZZ_suffix.html#suffix"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":31,"breadcrumbs":7,"title":1},"100":{"body":16,"breadcrumbs":7,"title":3},"101":{"body":11,"breadcrumbs":8,"title":4},"102":{"body":64,"breadcrumbs":7,"title":2},"103":{"body":50,"breadcrumbs":7,"title":2},"104":{"body":46,"breadcrumbs":8,"title":3},"105":{"body":9,"breadcrumbs":5,"title":1},"106":{"body":61,"breadcrumbs":5,"title":1},"107":{"body":162,"breadcrumbs":6,"title":2},"108":{"body":49,"breadcrumbs":5,"title":1},"109":{"body":44,"breadcrumbs":6,"title":2},"11":{"body":91,"breadcrumbs":7,"title":1},"110":{"body":110,"breadcrumbs":6,"title":2},"111":{"body":19,"breadcrumbs":6,"title":2},"112":{"body":25,"breadcrumbs":5,"title":1},"113":{"body":49,"breadcrumbs":7,"title":3},"114":{"body":66,"breadcrumbs":6,"title":2},"115":{"body":204,"breadcrumbs":6,"title":2},"116":{"body":15,"breadcrumbs":6,"title":2},"117":{"body":30,"breadcrumbs":5,"title":1},"118":{"body":48,"breadcrumbs":6,"title":2},"119":{"body":23,"breadcrumbs":6,"title":2},"12":{"body":26,"breadcrumbs":7,"title":1},"120":{"body":91,"breadcrumbs":6,"title":2},"121":{"body":33,"breadcrumbs":6,"title":2},"122":{"body":128,"breadcrumbs":6,"title":2},"123":{"body":76,"breadcrumbs":6,"title":2},"124":{"body":83,"breadcrumbs":7,"title":3},"125":{"body":90,"breadcrumbs":8,"title":4},"126":{"body":96,"breadcrumbs":7,"title":3},"127":{"body":31,"breadcrumbs":7,"title":3},"128":{"body":61,"breadcrumbs":8,"title":4},"129":{"body":98,"breadcrumbs":5,"title":1},"13":{"body":21,"breadcrumbs":7,"title":1},"130":{"body":296,"breadcrumbs":6,"title":2},"131":{"body":38,"breadcrumbs":5,"title":1},"132":{"body":16,"breadcrumbs":6,"title":2},"133":{"body":2,"breadcrumbs":6,"title":2},"134":{"body":5,"breadcrumbs":7,"title":3},"135":{"body":18,"breadcrumbs":6,"title":2},"136":{"body":9,"breadcrumbs":8,"title":4},"137":{"body":13,"breadcrumbs":8,"title":4},"138":{"body":14,"breadcrumbs":6,"title":2},"139":{"body":86,"breadcrumbs":8,"title":4},"14":{"body":69,"breadcrumbs":7,"title":1},"140":{"body":0,"breadcrumbs":6,"title":2},"141":{"body":139,"breadcrumbs":6,"title":2},"142":{"body":7,"breadcrumbs":6,"title":2},"143":{"body":31,"breadcrumbs":6,"title":2},"144":{"body":65,"breadcrumbs":7,"title":3},"145":{"body":17,"breadcrumbs":5,"title":1},"146":{"body":0,"breadcrumbs":7,"title":3},"147":{"body":143,"breadcrumbs":5,"title":1},"148":{"body":61,"breadcrumbs":7,"title":3},"149":{"body":171,"breadcrumbs":6,"title":2},"15":{"body":65,"breadcrumbs":7,"title":1},"150":{"body":0,"breadcrumbs":5,"title":1},"151":{"body":165,"breadcrumbs":7,"title":3},"152":{"body":141,"breadcrumbs":7,"title":3},"153":{"body":17,"breadcrumbs":8,"title":2},"154":{"body":0,"breadcrumbs":8,"title":2},"155":{"body":10,"breadcrumbs":9,"title":3},"156":{"body":60,"breadcrumbs":7,"title":1},"157":{"body":28,"breadcrumbs":7,"title":1},"158":{"body":65,"breadcrumbs":8,"title":2},"159":{"body":46,"breadcrumbs":9,"title":3},"16":{"body":29,"breadcrumbs":8,"title":2},"160":{"body":58,"breadcrumbs":10,"title":3},"161":{"body":0,"breadcrumbs":8,"title":1},"162":{"body":33,"breadcrumbs":10,"title":3},"163":{"body":27,"breadcrumbs":10,"title":3},"164":{"body":46,"breadcrumbs":10,"title":3},"165":{"body":116,"breadcrumbs":8,"title":1},"166":{"body":61,"breadcrumbs":9,"title":2},"167":{"body":59,"breadcrumbs":11,"title":4},"168":{"body":70,"breadcrumbs":9,"title":2},"169":{"body":32,"breadcrumbs":10,"title":3},"17":{"body":35,"breadcrumbs":7,"title":1},"170":{"body":11,"breadcrumbs":11,"title":4},"171":{"body":43,"breadcrumbs":10,"title":3},"172":{"body":92,"breadcrumbs":9,"title":2},"173":{"body":25,"breadcrumbs":5,"title":1},"174":{"body":746,"breadcrumbs":7,"title":2},"175":{"body":101,"breadcrumbs":7,"title":2},"176":{"body":60,"breadcrumbs":7,"title":2},"177":{"body":24,"breadcrumbs":8,"title":3},"178":{"body":22,"breadcrumbs":9,"title":3},"179":{"body":39,"breadcrumbs":7,"title":1},"18":{"body":54,"breadcrumbs":8,"title":2},"180":{"body":54,"breadcrumbs":9,"title":3},"181":{"body":19,"breadcrumbs":9,"title":3},"182":{"body":42,"breadcrumbs":8,"title":2},"183":{"body":90,"breadcrumbs":11,"title":5},"184":{"body":15,"breadcrumbs":7,"title":1},"185":{"body":78,"breadcrumbs":9,"title":3},"186":{"body":32,"breadcrumbs":8,"title":2},"187":{"body":25,"breadcrumbs":9,"title":3},"188":{"body":92,"breadcrumbs":8,"title":2},"189":{"body":55,"breadcrumbs":8,"title":2},"19":{"body":28,"breadcrumbs":8,"title":2},"190":{"body":18,"breadcrumbs":8,"title":2},"191":{"body":194,"breadcrumbs":21,"title":9},"192":{"body":0,"breadcrumbs":14,"title":2},"193":{"body":0,"breadcrumbs":14,"title":2},"194":{"body":0,"breadcrumbs":14,"title":2},"195":{"body":0,"breadcrumbs":14,"title":2},"196":{"body":81,"breadcrumbs":13,"title":1},"197":{"body":0,"breadcrumbs":14,"title":2},"198":{"body":0,"breadcrumbs":14,"title":2},"199":{"body":0,"breadcrumbs":14,"title":2},"2":{"body":5,"breadcrumbs":3,"title":2},"20":{"body":87,"breadcrumbs":8,"title":2},"200":{"body":110,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":0,"breadcrumbs":14,"title":2},"203":{"body":0,"breadcrumbs":14,"title":2},"204":{"body":5,"breadcrumbs":14,"title":2},"205":{"body":13,"breadcrumbs":8,"title":2},"206":{"body":12,"breadcrumbs":6,"title":1},"207":{"body":5,"breadcrumbs":6,"title":1},"208":{"body":154,"breadcrumbs":6,"title":1},"209":{"body":123,"breadcrumbs":6,"title":1},"21":{"body":42,"breadcrumbs":7,"title":1},"210":{"body":58,"breadcrumbs":6,"title":1},"211":{"body":92,"breadcrumbs":8,"title":3},"212":{"body":42,"breadcrumbs":6,"title":1},"213":{"body":123,"breadcrumbs":7,"title":2},"214":{"body":3,"breadcrumbs":6,"title":1},"215":{"body":19,"breadcrumbs":6,"title":1},"216":{"body":53,"breadcrumbs":8,"title":3},"217":{"body":16,"breadcrumbs":8,"title":3},"218":{"body":32,"breadcrumbs":7,"title":2},"219":{"body":647,"breadcrumbs":6,"title":1},"22":{"body":45,"breadcrumbs":8,"title":2},"220":{"body":30,"breadcrumbs":8,"title":3},"221":{"body":18,"breadcrumbs":8,"title":3},"222":{"body":29,"breadcrumbs":6,"title":1},"223":{"body":39,"breadcrumbs":6,"title":1},"224":{"body":26,"breadcrumbs":6,"title":1},"225":{"body":326,"breadcrumbs":7,"title":2},"226":{"body":0,"breadcrumbs":8,"title":3},"227":{"body":166,"breadcrumbs":7,"title":2},"228":{"body":100,"breadcrumbs":7,"title":2},"229":{"body":48,"breadcrumbs":9,"title":4},"23":{"body":80,"breadcrumbs":8,"title":2},"230":{"body":42,"breadcrumbs":7,"title":2},"231":{"body":49,"breadcrumbs":8,"title":3},"232":{"body":69,"breadcrumbs":5,"title":1},"233":{"body":5,"breadcrumbs":7,"title":2},"234":{"body":13,"breadcrumbs":6,"title":1},"235":{"body":28,"breadcrumbs":8,"title":3},"236":{"body":72,"breadcrumbs":8,"title":3},"237":{"body":107,"breadcrumbs":6,"title":1},"238":{"body":12,"breadcrumbs":5,"title":1},"239":{"body":15,"breadcrumbs":6,"title":2},"24":{"body":162,"breadcrumbs":7,"title":1},"240":{"body":15,"breadcrumbs":6,"title":2},"241":{"body":54,"breadcrumbs":5,"title":1},"242":{"body":529,"breadcrumbs":8,"title":4},"243":{"body":36,"breadcrumbs":8,"title":4},"244":{"body":22,"breadcrumbs":9,"title":3},"245":{"body":38,"breadcrumbs":8,"title":2},"246":{"body":0,"breadcrumbs":8,"title":2},"247":{"body":8,"breadcrumbs":7,"title":1},"248":{"body":12,"breadcrumbs":8,"title":2},"249":{"body":19,"breadcrumbs":8,"title":2},"25":{"body":0,"breadcrumbs":8,"title":2},"250":{"body":9,"breadcrumbs":9,"title":3},"251":{"body":7,"breadcrumbs":10,"title":4},"252":{"body":7,"breadcrumbs":11,"title":5},"253":{"body":10,"breadcrumbs":11,"title":5},"254":{"body":10,"breadcrumbs":11,"title":5},"255":{"body":9,"breadcrumbs":10,"title":4},"256":{"body":10,"breadcrumbs":10,"title":4},"257":{"body":10,"breadcrumbs":10,"title":4},"258":{"body":16,"breadcrumbs":7,"title":1},"259":{"body":8,"breadcrumbs":5,"title":1},"26":{"body":15,"breadcrumbs":8,"title":2},"260":{"body":15,"breadcrumbs":6,"title":2},"261":{"body":88,"breadcrumbs":6,"title":2},"262":{"body":24,"breadcrumbs":6,"title":2},"263":{"body":38,"breadcrumbs":5,"title":1},"264":{"body":8,"breadcrumbs":5,"title":1},"265":{"body":15,"breadcrumbs":6,"title":2},"266":{"body":0,"breadcrumbs":6,"title":2},"267":{"body":107,"breadcrumbs":5,"title":1},"268":{"body":99,"breadcrumbs":5,"title":1},"269":{"body":85,"breadcrumbs":8,"title":4},"27":{"body":19,"breadcrumbs":7,"title":1},"270":{"body":16,"breadcrumbs":5,"title":1},"271":{"body":15,"breadcrumbs":6,"title":2},"272":{"body":0,"breadcrumbs":6,"title":2},"273":{"body":66,"breadcrumbs":5,"title":1},"274":{"body":32,"breadcrumbs":5,"title":1},"275":{"body":25,"breadcrumbs":5,"title":1},"276":{"body":109,"breadcrumbs":8,"title":4},"277":{"body":26,"breadcrumbs":8,"title":2},"278":{"body":135,"breadcrumbs":7,"title":1},"279":{"body":103,"breadcrumbs":9,"title":3},"28":{"body":30,"breadcrumbs":9,"title":3},"280":{"body":62,"breadcrumbs":8,"title":2},"281":{"body":77,"breadcrumbs":7,"title":1},"282":{"body":11,"breadcrumbs":8,"title":2},"283":{"body":44,"breadcrumbs":12,"title":4},"284":{"body":91,"breadcrumbs":9,"title":1},"285":{"body":307,"breadcrumbs":9,"title":1},"286":{"body":117,"breadcrumbs":8,"title":2},"287":{"body":50,"breadcrumbs":12,"title":4},"288":{"body":0,"breadcrumbs":7,"title":1},"289":{"body":17,"breadcrumbs":7,"title":1},"29":{"body":21,"breadcrumbs":9,"title":3},"290":{"body":15,"breadcrumbs":8,"title":2},"291":{"body":0,"breadcrumbs":8,"title":2},"292":{"body":64,"breadcrumbs":7,"title":1},"293":{"body":36,"breadcrumbs":7,"title":1},"294":{"body":25,"breadcrumbs":7,"title":1},"295":{"body":124,"breadcrumbs":10,"title":4},"296":{"body":9,"breadcrumbs":9,"title":2},"297":{"body":16,"breadcrumbs":9,"title":2},"298":{"body":0,"breadcrumbs":9,"title":2},"299":{"body":250,"breadcrumbs":8,"title":1},"3":{"body":34,"breadcrumbs":6,"title":2},"30":{"body":21,"breadcrumbs":9,"title":3},"300":{"body":65,"breadcrumbs":8,"title":1},"301":{"body":85,"breadcrumbs":11,"title":4},"302":{"body":20,"breadcrumbs":10,"title":2},"303":{"body":39,"breadcrumbs":10,"title":2},"304":{"body":0,"breadcrumbs":10,"title":2},"305":{"body":28,"breadcrumbs":9,"title":1},"306":{"body":12,"breadcrumbs":10,"title":2},"307":{"body":19,"breadcrumbs":10,"title":2},"308":{"body":5,"breadcrumbs":11,"title":3},"309":{"body":8,"breadcrumbs":12,"title":4},"31":{"body":41,"breadcrumbs":6,"title":1},"310":{"body":9,"breadcrumbs":11,"title":3},"311":{"body":10,"breadcrumbs":12,"title":4},"312":{"body":11,"breadcrumbs":9,"title":1},"313":{"body":16,"breadcrumbs":10,"title":2},"314":{"body":16,"breadcrumbs":9,"title":1},"315":{"body":13,"breadcrumbs":10,"title":2},"316":{"body":0,"breadcrumbs":9,"title":1},"317":{"body":17,"breadcrumbs":9,"title":1},"318":{"body":63,"breadcrumbs":9,"title":1},"319":{"body":9,"breadcrumbs":10,"title":2},"32":{"body":40,"breadcrumbs":8,"title":3},"320":{"body":16,"breadcrumbs":10,"title":2},"321":{"body":61,"breadcrumbs":10,"title":2},"322":{"body":70,"breadcrumbs":12,"title":4},"323":{"body":88,"breadcrumbs":8,"title":1},"324":{"body":16,"breadcrumbs":10,"title":2},"325":{"body":19,"breadcrumbs":9,"title":1},"326":{"body":13,"breadcrumbs":10,"title":2},"327":{"body":0,"breadcrumbs":9,"title":1},"328":{"body":18,"breadcrumbs":9,"title":1},"329":{"body":30,"breadcrumbs":9,"title":1},"33":{"body":58,"breadcrumbs":8,"title":3},"330":{"body":10,"breadcrumbs":12,"title":3},"331":{"body":19,"breadcrumbs":11,"title":2},"332":{"body":62,"breadcrumbs":11,"title":2},"333":{"body":70,"breadcrumbs":13,"title":4},"334":{"body":102,"breadcrumbs":8,"title":1},"335":{"body":12,"breadcrumbs":13,"title":3},"336":{"body":19,"breadcrumbs":11,"title":1},"337":{"body":14,"breadcrumbs":12,"title":2},"338":{"body":77,"breadcrumbs":11,"title":1},"339":{"body":0,"breadcrumbs":11,"title":1},"34":{"body":28,"breadcrumbs":7,"title":2},"340":{"body":18,"breadcrumbs":11,"title":1},"341":{"body":26,"breadcrumbs":11,"title":1},"342":{"body":9,"breadcrumbs":11,"title":2},"343":{"body":17,"breadcrumbs":11,"title":2},"344":{"body":46,"breadcrumbs":11,"title":2},"345":{"body":77,"breadcrumbs":13,"title":4},"346":{"body":110,"breadcrumbs":9,"title":1},"347":{"body":20,"breadcrumbs":10,"title":2},"348":{"body":14,"breadcrumbs":9,"title":1},"349":{"body":0,"breadcrumbs":9,"title":1},"35":{"body":43,"breadcrumbs":7,"title":2},"350":{"body":27,"breadcrumbs":10,"title":2},"351":{"body":87,"breadcrumbs":10,"title":2},"352":{"body":9,"breadcrumbs":8,"title":1},"353":{"body":16,"breadcrumbs":9,"title":2},"354":{"body":13,"breadcrumbs":10,"title":3},"355":{"body":80,"breadcrumbs":8,"title":1},"356":{"body":9,"breadcrumbs":7,"title":1},"357":{"body":12,"breadcrumbs":7,"title":1},"358":{"body":12,"breadcrumbs":8,"title":2},"359":{"body":28,"breadcrumbs":7,"title":1},"36":{"body":30,"breadcrumbs":5,"title":1},"360":{"body":67,"breadcrumbs":7,"title":1},"361":{"body":19,"breadcrumbs":7,"title":1},"362":{"body":25,"breadcrumbs":7,"title":1},"363":{"body":15,"breadcrumbs":8,"title":2},"364":{"body":26,"breadcrumbs":7,"title":1},"365":{"body":72,"breadcrumbs":7,"title":1},"366":{"body":0,"breadcrumbs":11,"title":2},"367":{"body":17,"breadcrumbs":9,"title":1},"368":{"body":0,"breadcrumbs":9,"title":1},"369":{"body":16,"breadcrumbs":9,"title":1},"37":{"body":27,"breadcrumbs":8,"title":4},"370":{"body":93,"breadcrumbs":9,"title":1},"371":{"body":60,"breadcrumbs":9,"title":1},"372":{"body":0,"breadcrumbs":10,"title":2},"373":{"body":125,"breadcrumbs":10,"title":2},"374":{"body":178,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":154,"breadcrumbs":10,"title":2},"377":{"body":115,"breadcrumbs":10,"title":2},"378":{"body":10,"breadcrumbs":9,"title":1},"379":{"body":13,"breadcrumbs":9,"title":1},"38":{"body":23,"breadcrumbs":9,"title":5},"380":{"body":6,"breadcrumbs":9,"title":1},"381":{"body":117,"breadcrumbs":10,"title":2},"382":{"body":17,"breadcrumbs":9,"title":1},"383":{"body":37,"breadcrumbs":9,"title":1},"384":{"body":37,"breadcrumbs":9,"title":1},"385":{"body":3,"breadcrumbs":9,"title":1},"386":{"body":129,"breadcrumbs":9,"title":1},"387":{"body":5,"breadcrumbs":9,"title":2},"388":{"body":28,"breadcrumbs":7,"title":1},"389":{"body":18,"breadcrumbs":7,"title":1},"39":{"body":13,"breadcrumbs":6,"title":2},"390":{"body":5,"breadcrumbs":7,"title":1},"391":{"body":452,"breadcrumbs":9,"title":3},"392":{"body":22,"breadcrumbs":8,"title":2},"393":{"body":22,"breadcrumbs":9,"title":2},"394":{"body":70,"breadcrumbs":8,"title":1},"395":{"body":7,"breadcrumbs":8,"title":1},"396":{"body":8,"breadcrumbs":8,"title":1},"397":{"body":39,"breadcrumbs":9,"title":2},"398":{"body":58,"breadcrumbs":9,"title":2},"399":{"body":23,"breadcrumbs":9,"title":2},"4":{"body":18,"breadcrumbs":5,"title":1},"40":{"body":19,"breadcrumbs":9,"title":3},"400":{"body":19,"breadcrumbs":9,"title":2},"401":{"body":72,"breadcrumbs":9,"title":2},"402":{"body":57,"breadcrumbs":9,"title":2},"403":{"body":7,"breadcrumbs":10,"title":3},"404":{"body":46,"breadcrumbs":9,"title":2},"405":{"body":49,"breadcrumbs":9,"title":2},"406":{"body":25,"breadcrumbs":8,"title":1},"407":{"body":6,"breadcrumbs":9,"title":2},"408":{"body":0,"breadcrumbs":12,"title":4},"409":{"body":26,"breadcrumbs":12,"title":4},"41":{"body":0,"breadcrumbs":7,"title":1},"410":{"body":0,"breadcrumbs":10,"title":2},"411":{"body":10,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":10,"title":2},"413":{"body":13,"breadcrumbs":10,"title":2},"414":{"body":7,"breadcrumbs":11,"title":3},"415":{"body":10,"breadcrumbs":11,"title":3},"416":{"body":10,"breadcrumbs":11,"title":3},"417":{"body":16,"breadcrumbs":9,"title":1},"418":{"body":0,"breadcrumbs":6,"title":2},"419":{"body":36,"breadcrumbs":5,"title":1},"42":{"body":5,"breadcrumbs":7,"title":1},"420":{"body":152,"breadcrumbs":7,"title":3},"421":{"body":94,"breadcrumbs":5,"title":1},"422":{"body":209,"breadcrumbs":6,"title":2},"423":{"body":10,"breadcrumbs":6,"title":2},"424":{"body":176,"breadcrumbs":8,"title":4},"425":{"body":48,"breadcrumbs":7,"title":2},"426":{"body":0,"breadcrumbs":9,"title":2},"427":{"body":5,"breadcrumbs":9,"title":2},"428":{"body":5,"breadcrumbs":9,"title":3},"429":{"body":5,"breadcrumbs":7,"title":2},"43":{"body":10,"breadcrumbs":7,"title":1},"430":{"body":34,"breadcrumbs":6,"title":1},"431":{"body":43,"breadcrumbs":6,"title":1},"432":{"body":19,"breadcrumbs":9,"title":4},"433":{"body":20,"breadcrumbs":8,"title":2},"434":{"body":86,"breadcrumbs":7,"title":1},"435":{"body":3,"breadcrumbs":7,"title":1},"436":{"body":44,"breadcrumbs":9,"title":3},"437":{"body":49,"breadcrumbs":9,"title":3},"438":{"body":21,"breadcrumbs":10,"title":3},"439":{"body":137,"breadcrumbs":8,"title":1},"44":{"body":47,"breadcrumbs":9,"title":3},"440":{"body":3,"breadcrumbs":8,"title":1},"441":{"body":26,"breadcrumbs":10,"title":3},"442":{"body":26,"breadcrumbs":10,"title":3},"443":{"body":42,"breadcrumbs":10,"title":3},"444":{"body":79,"breadcrumbs":10,"title":3},"445":{"body":0,"breadcrumbs":6,"title":2},"446":{"body":0,"breadcrumbs":10,"title":4},"447":{"body":64,"breadcrumbs":7,"title":1},"448":{"body":2658,"breadcrumbs":9,"title":3},"449":{"body":8802,"breadcrumbs":10,"title":4},"45":{"body":67,"breadcrumbs":9,"title":3},"450":{"body":103278,"breadcrumbs":8,"title":2},"451":{"body":225,"breadcrumbs":9,"title":3},"452":{"body":657,"breadcrumbs":7,"title":1},"453":{"body":2925,"breadcrumbs":7,"title":1},"454":{"body":1,"breadcrumbs":7,"title":1},"455":{"body":2,"breadcrumbs":8,"title":2},"456":{"body":252,"breadcrumbs":10,"title":4},"457":{"body":252,"breadcrumbs":10,"title":4},"458":{"body":454,"breadcrumbs":22,"title":16},"459":{"body":87,"breadcrumbs":8,"title":3},"46":{"body":5,"breadcrumbs":8,"title":2},"460":{"body":18,"breadcrumbs":6,"title":1},"461":{"body":81,"breadcrumbs":7,"title":2},"462":{"body":128,"breadcrumbs":8,"title":3},"463":{"body":81,"breadcrumbs":7,"title":2},"464":{"body":0,"breadcrumbs":6,"title":1},"465":{"body":101,"breadcrumbs":9,"title":4},"466":{"body":115,"breadcrumbs":8,"title":3},"467":{"body":53,"breadcrumbs":10,"title":5},"468":{"body":34,"breadcrumbs":7,"title":2},"469":{"body":64,"breadcrumbs":9,"title":4},"47":{"body":340,"breadcrumbs":7,"title":1},"470":{"body":139,"breadcrumbs":8,"title":3},"471":{"body":117,"breadcrumbs":7,"title":2},"472":{"body":73,"breadcrumbs":6,"title":1},"473":{"body":49,"breadcrumbs":6,"title":1},"474":{"body":29,"breadcrumbs":11,"title":6},"475":{"body":124,"breadcrumbs":7,"title":2},"476":{"body":124,"breadcrumbs":8,"title":3},"477":{"body":0,"breadcrumbs":6,"title":2},"478":{"body":5,"breadcrumbs":12,"title":5},"479":{"body":5,"breadcrumbs":14,"title":6},"48":{"body":49,"breadcrumbs":8,"title":2},"480":{"body":5,"breadcrumbs":16,"title":7},"481":{"body":5,"breadcrumbs":14,"title":6},"482":{"body":5,"breadcrumbs":12,"title":5},"483":{"body":5,"breadcrumbs":12,"title":5},"484":{"body":66,"breadcrumbs":6,"title":3},"485":{"body":17,"breadcrumbs":5,"title":2},"486":{"body":18,"breadcrumbs":5,"title":2},"487":{"body":62,"breadcrumbs":4,"title":1},"488":{"body":0,"breadcrumbs":5,"title":2},"489":{"body":15,"breadcrumbs":5,"title":2},"49":{"body":64,"breadcrumbs":7,"title":2},"490":{"body":257,"breadcrumbs":5,"title":2},"491":{"body":168,"breadcrumbs":5,"title":2},"492":{"body":0,"breadcrumbs":6,"title":3},"493":{"body":0,"breadcrumbs":5,"title":2},"494":{"body":0,"breadcrumbs":4,"title":1},"495":{"body":0,"breadcrumbs":5,"title":2},"496":{"body":0,"breadcrumbs":8,"title":4},"497":{"body":49,"breadcrumbs":5,"title":1},"498":{"body":75,"breadcrumbs":5,"title":1},"499":{"body":42,"breadcrumbs":6,"title":2},"5":{"body":12,"breadcrumbs":8,"title":2},"50":{"body":13,"breadcrumbs":7,"title":2},"500":{"body":34,"breadcrumbs":5,"title":1},"501":{"body":25,"breadcrumbs":5,"title":1},"502":{"body":13,"breadcrumbs":6,"title":2},"503":{"body":27,"breadcrumbs":6,"title":2},"504":{"body":42,"breadcrumbs":6,"title":2},"505":{"body":41,"breadcrumbs":7,"title":3},"506":{"body":26,"breadcrumbs":7,"title":3},"507":{"body":37,"breadcrumbs":5,"title":1},"508":{"body":46,"breadcrumbs":6,"title":3},"509":{"body":16,"breadcrumbs":6,"title":3},"51":{"body":17,"breadcrumbs":6,"title":1},"510":{"body":5,"breadcrumbs":2,"title":1},"52":{"body":11,"breadcrumbs":6,"title":1},"53":{"body":50,"breadcrumbs":6,"title":1},"54":{"body":0,"breadcrumbs":11,"title":4},"55":{"body":39,"breadcrumbs":9,"title":2},"56":{"body":59,"breadcrumbs":10,"title":3},"57":{"body":54,"breadcrumbs":10,"title":3},"58":{"body":12,"breadcrumbs":5,"title":1},"59":{"body":188,"breadcrumbs":6,"title":2},"6":{"body":0,"breadcrumbs":8,"title":2},"60":{"body":0,"breadcrumbs":5,"title":1},"61":{"body":25,"breadcrumbs":6,"title":2},"62":{"body":34,"breadcrumbs":8,"title":4},"63":{"body":37,"breadcrumbs":5,"title":1},"64":{"body":81,"breadcrumbs":5,"title":1},"65":{"body":4,"breadcrumbs":5,"title":1},"66":{"body":7,"breadcrumbs":6,"title":2},"67":{"body":13,"breadcrumbs":6,"title":2},"68":{"body":70,"breadcrumbs":5,"title":1},"69":{"body":44,"breadcrumbs":6,"title":2},"7":{"body":18,"breadcrumbs":7,"title":1},"70":{"body":9,"breadcrumbs":7,"title":2},"71":{"body":68,"breadcrumbs":8,"title":3},"72":{"body":206,"breadcrumbs":7,"title":2},"73":{"body":329,"breadcrumbs":7,"title":2},"74":{"body":29,"breadcrumbs":7,"title":2},"75":{"body":99,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":38,"breadcrumbs":6,"title":1},"78":{"body":0,"breadcrumbs":5,"title":1},"79":{"body":9,"breadcrumbs":5,"title":1},"8":{"body":19,"breadcrumbs":7,"title":1},"80":{"body":25,"breadcrumbs":5,"title":1},"81":{"body":38,"breadcrumbs":5,"title":1},"82":{"body":15,"breadcrumbs":5,"title":1},"83":{"body":27,"breadcrumbs":7,"title":3},"84":{"body":43,"breadcrumbs":6,"title":2},"85":{"body":37,"breadcrumbs":6,"title":2},"86":{"body":13,"breadcrumbs":6,"title":2},"87":{"body":25,"breadcrumbs":7,"title":3},"88":{"body":4,"breadcrumbs":5,"title":1},"89":{"body":58,"breadcrumbs":9,"title":5},"9":{"body":30,"breadcrumbs":7,"title":1},"90":{"body":122,"breadcrumbs":7,"title":3},"91":{"body":49,"breadcrumbs":9,"title":5},"92":{"body":620,"breadcrumbs":8,"title":4},"93":{"body":4,"breadcrumbs":8,"title":4},"94":{"body":52,"breadcrumbs":7,"title":3},"95":{"body":79,"breadcrumbs":7,"title":3},"96":{"body":4,"breadcrumbs":5,"title":1},"97":{"body":3,"breadcrumbs":5,"title":1},"98":{"body":33,"breadcrumbs":5,"title":1},"99":{"body":0,"breadcrumbs":5,"title":1}},"docs":{"0":{"body":"Draft The Catalyst-Core Documentation is currently undergoing review and re-write. This documentation is published AS-IS. There is no guarantee that it is correct with regards to the current implementation. The source of all truth with regards to the implementation is the source code. Patches to improve the documentation are very welcome. See Contributing . Found a bug? Edit this page on GitHub.","breadcrumbs":"Prologue » Prologue","id":"0","title":"Prologue"},"1":{"body":"","breadcrumbs":"Introduction » Introduction","id":"1","title":"Introduction"},"10":{"body":"The blockchain is the general set of rules and the blocks that are periodically created. Some of the rules and settings, can be changed dynamically in the system by updates, while some other are hardcoded in the genesis block (first block of the blockchain). +-------+ +-------+ |Genesis+<-----+Block 1+<--- .... |Header | |Header | +---+---+ +---+---+ | | +---v---+ +---v---+ |Genesis| |Block 1| |Content| |Content| +-------+ +-------+","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain","id":"10","title":"Blockchain"},"100":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin or equivantely cat genesis.yaml | jcli genesis encode > block-0.bin","breadcrumbs":"Core Ledger » jcli » Genesis » Encode a genesis file","id":"100","title":"Encode a genesis file"},"101":{"body":"jcli genesis hash --input block-0.bin Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Genesis » Get the hash of an encoded genesis file","id":"101","title":"Get the hash of an encoded genesis file"},"102":{"body":"There are multiple type of key for multiple use cases. type usage ed25519 Signing algorithm for Ed25519 algorithm ed25519-bip32 Related to the HDWallet, Ed25519 Extended with chain code for derivation ed25519-extended Related to Ed25519Bip32 without the chain code sum-ed25519-12 For stake pool, necessary for the KES ristretto-group2-hash-dh For stake pool, necessary for the VRF There is a command line parameter to generate this keys: $ jcli key generate --type=Ed25519\ned25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt and to extract the associated public key: $ echo ed25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt | jcli key to-public\ned25519_pk1z2ffur59cq7t806nc9y2g64wa60pg5m6e9cmrhxz9phppaxk5d4sn8nsqg","breadcrumbs":"Core Ledger » jcli » cryptographic keys » cryptographic keys","id":"102","title":"cryptographic keys"},"103":{"body":"Sign data with private key. Supported key formats are: ed25519, ed25519-bip32, ed25519-extended and sumed25519_12. jcli key sign The options are –secret-key - path to file with bech32-encoded secret key -o, –output - path to file to write signature into, if no value is passed, standard output will be used - path to file with data to sign, if no value is passed, standard input will be used","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Signing data","id":"103","title":"Signing data"},"104":{"body":"Verify signed data with public key. Supported key formats are: ed25519, ed25519bip32 and sumed25519_12. jcli key verify The options are –public-key - path to file with bech32-encoded public key –signature - path to file with signature - path to file with data to sign, if no value is passed, standard input will be used Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Verifying signed data","id":"104","title":"Verifying signed data"},"105":{"body":"Jormungandr comes with a CLI client for manual communication with nodes over HTTP.","breadcrumbs":"Core Ledger » jcli » REST » REST","id":"105","title":"REST"},"106":{"body":"Many CLI commands have common arguments: -h or --host - Node API address. Must always have http:// or https:// prefix and always ends with the /api. E.g. -h http://127.0.0.1:8081/api, --host https://node.com:8443/cardano/api. --debug - Print additional debug information to stderr. The output format is intentionally undocumented and unstable --output-format - Format of output data. Possible values: json, yaml, default yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ .","breadcrumbs":"Core Ledger » jcli » REST » Conventions","id":"106","title":"Conventions"},"107":{"body":"Fetches node stats jcli rest v0 node stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# Number of blocks received by node\nblockRecvCnt: 1102\n# Size in bytes of all transactions in last block\nlastBlockContentSize: 484\n# The Epoch and slot Number of the block (optional)\nlastBlockDate: \"20.29\"\n# Sum of all fee values in all transactions in last block\nlastBlockFees: 534\n# The block hash, it's unique identifier in the blockchain (optional)\nlastBlockHash: b9597b45a402451540e6aabb58f2ee4d65c67953b338e04c52c00aa0886bd1f0\n# The block number, in order, since the block0 (optional)\nlastBlockHeight: 202901\n# Sum of all input values in all transactions in last block\nlastBlockSum: 51604\n# The time slot of the tip block\nlastBlockTime: \"2020-01-30T22:37:46+00:00\"\n# Number of transactions in last block\nlastBlockTx: 2\n# The time at which we received the last block, not necessarily the current tip block (optional)\nlastReceivedBlockTime: \"2020-01-30T22:37:59+00:00\"\n# 24 bytes encoded in hexadecimal Node ID\nnodeId: \"ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d\"\n# Number of nodes that are available for p2p discovery and events propagation\npeerAvailableCnt: 321\n# Number of nodes that have been quarantined by our node\npeerQuarantinedCnt: 123\n# Total number of nodes\npeerTotalCnt: 444\n# Number of nodes that are connected to ours but that are not publicly reachable\npeerUnreachableCnt: 0\n# State of the node\nstate: Running\n# Number of transactions received by node\ntxRecvCnt: 5440\n# Node uptime in seconds\nuptime: 20032\n# Node app version\nversion: jormungandr 0.8.9-30d20d2e","breadcrumbs":"Core Ledger » jcli » REST » Node stats","id":"107","title":"Node stats"},"108":{"body":"Fetches UTxO details jcli rest v0 utxo get - hex-encoded ID of the transaction fragment - index of the transaction output The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# UTxO owner address\naddress: ca1svs0mwkfky9htpam576mc93mee5709khre8dgnqslj6y3p5f77s5gpgv02w\n# UTxO value\nvalue: 10000","breadcrumbs":"Core Ledger » jcli » REST » Get UTxO","id":"108","title":"Get UTxO"},"109":{"body":"Posts a signed, hex-encoded transaction jcli rest v0 message post The options are -h - see conventions –debug - see conventions -f –file - File containing hex-encoded transaction. If not provided, transaction will be read from stdin. Fragment Id is printed on success (which can help finding transaction status using get message log command) 50f21ac6bd3f57f231c4bf9c5fff7c45e2529c4dffed68f92410dbf7647541f1","breadcrumbs":"Core Ledger » jcli » REST » Post transaction","id":"109","title":"Post transaction"},"11":{"body":"The node currently support the following consensus protocol: Ouroboros BFT (OBFT) Ouroboros Genesis-Praos Ouroboros BFT is a simple Byzantine Fault Tolerant (BFT) protocol where the block makers is a known list of leaders that successively create a block and broadcast it on the network. Ouroboros Genesis Praos is a proof of stake (PoS) protocol where the block maker is made of a lottery where each stake pool has a chance proportional to their stake to be elected to create a block. Each lottery draw is private to each stake pool, so that the overall network doesn’t know in advance who can or cannot create blocks. In Genesis-Praos slot time duration is constant, however the frequency of creating blocks is not stable, since the creation of blocks is a probability that is linked to the stake and consensus_genesis_praos_active_slot_coeff. Note : In Genesis-Praos, if there is no stake in the system, no blocks will be created anymore starting with the next epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Consensus","id":"11","title":"Consensus"},"110":{"body":"Get the node’s logs on the message pool. This will provide information on pending transaction, rejected transaction and or when a transaction has been added in a block jcli rest v0 message logs The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- fragment_id: 7db6f91f3c92c0aef7b3dd497e9ea275229d2ab4dba6a1b30ce6b32db9c9c3b2 # hex-encoded fragment ID last_updated_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of last fragment status change received_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of fragment receivement received_from: Network, # how fragment was received status: Pending, # fragment status received_from can be one of: received_from: Rest # fragment was received from node's REST API received_from: Network # fragment was received from the network status can be one of: status: Pending # fragment is pending status: Rejected: # fragment was rejected reason: reason of rejection # cause status: # fragment was included in a block InABlock: date: \"6637.3\" # block epoch and slot ID formed as . block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\"","breadcrumbs":"Core Ledger » jcli » REST » Get message log","id":"110","title":"Get message log"},"111":{"body":"Retrieves a hex-encoded ID of the blockchain tip jcli rest v0 tip get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Blockchain tip","id":"111","title":"Blockchain tip"},"112":{"body":"Retrieves a hex-encoded block with given ID jcli rest v0 block get - hex-encoded block ID The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Get block","id":"112","title":"Get block"},"113":{"body":"Retrieves a list of hex-encoded IDs of descendants of block with given ID. Every list element is in separate line. The IDs are sorted from closest to farthest. jcli rest v0 block next-id get - hex-encoded block ID The options are -h - see conventions –debug - see conventions -c –count - Maximum number of IDs, must be between 1 and 100, default 1","breadcrumbs":"Core Ledger » jcli » REST » Get next block ID","id":"113","title":"Get next block ID"},"114":{"body":"Get account state jcli rest v0 account get - ID of an account, bech32-encoded The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ncounter: 1\ndelegation: c780f14f9782770014d8bcd514b1bc664653d15f73a7158254730c6e1aa9f356\nvalue: 990 value is the current balance of the account; counter is the number of transactions performed using this account this is useful to know when signing new transactions; delegation is the Stake Pool Identifier the account is delegating to. it is possible this value is not set if there is no delegation certificate sent associated to this account.","breadcrumbs":"Core Ledger » jcli » REST » Get account state","id":"114","title":"Get account state"},"115":{"body":"Fetches node settings jcli rest v0 settings get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\nblock0Hash: 8d94ecfcc9a566f492e6335858db645691f628b012bed4ac2b1338b5690355a7 # block 0 hash of\nblock0Time: \"2019-07-09T12:32:51+00:00\" # block 0 creation time of\nblockContentMaxSize: 102400 # the block content's max size in bytes\nconsensusVersion: bft # currently used consensus\ncurrSlotStartTime: \"2019-07-09T12:55:11+00:00\" # current slot start time\nepochStabilityDepth: 102400 # the depth, number of blocks, to which we consider the blockchain to # be stable and prevent rollback beyond that depth\nfees: # transaction fee configuration certificate: 4 # fee per certificate coefficient: 1 # fee per every input and output constant: 2 # fee per transaction per_certificate_fees: # fee per certificate operations, all zero if this object absent (optional) certificate_pool_registration: 5 # fee per pool registration, zero if absent (optional) certificate_stake_delegation: 15 # fee per stake delegation, zero if absent (optional) certificate_owner_stake_delegation: 2 # fee per pool owner stake delegation, zero if absent (optional)\nrewardParams: # parameters for rewards calculation compoundingRatio: # speed at which reward is reduced. Expressed as numerator/denominator denominator: 1024 numerator: 1 compoundingType: Linear # reward reduction algorithm. Possible values: \"Linear\" and \"Halvening\" epochRate: 100 # number of epochs between reward reductions epochStart: 0 # epoch when rewarding starts initialValue: 10000 # initial reward\nslotDuration: 5 # slot duration in seconds\nslotsPerEpoch: 720 # number of slots per epoch\ntreasuryTax: # tax from reward that goes to pot fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)","breadcrumbs":"Core Ledger » jcli » REST » Node settings","id":"115","title":"Node settings"},"116":{"body":"Node shutdown jcli rest v0 shutdown get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Node shutdown","id":"116","title":"Node shutdown"},"117":{"body":"Fetches list of leader IDs jcli rest v0 leaders get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 1 # list of leader IDs\n- 2","breadcrumbs":"Core Ledger » jcli » REST » Get leaders","id":"117","title":"Get leaders"},"118":{"body":"Register new leader and get its ID jcli rest v0 leaders post The options are -h - see conventions –debug - see conventions –output-format - see conventions -f, –file - File containing YAML with leader secret. It must have the same format as secret YAML passed to Jormungandr as –secret. If not provided, YAML will be read from stdin. On success created leader ID is printed 3","breadcrumbs":"Core Ledger » jcli » REST » Register leader","id":"118","title":"Register leader"},"119":{"body":"Delete leader with given ID jcli rest v0 leaders delete - ID of deleted leader The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Delete leader","id":"119","title":"Delete leader"},"12":{"body":"The leadership represent in abstract term, who are the overall leaders of the system and allow each individual node to check that specific blocks are lawfully created in the system. The leadership is re-evaluated at each new epoch and is constant for the duration of an epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leadership","id":"12","title":"Leadership"},"120":{"body":"Fetches leadership logs jcli rest v0 leaders logs get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- created_at_time: \"2019-08-19T12:25:00.417263555+00:00\" enclave_leader_id: 1 finished_at_time: \"2019-08-19T23:19:05.010113333+00:00\" scheduled_at_date: \"0.3923\" scheduled_at_time: \"2019-08-19T23:18:35+00:00\" wake_at_time: \"2019-08-19T23:18:35.001254555+00:00\" status: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 Different value for the status: # meaning the action is still pending to happen\nstatus: Pending # meaning the action successfully create the given block with the given hash and parent\nstatus: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 # meaning the event has failed for some reasons\nstatus: Rejected: reason: \"Missed the deadline to compute the schedule\"","breadcrumbs":"Core Ledger » jcli » REST » Get leadership logs","id":"120","title":"Get leadership logs"},"121":{"body":"Fetches list of stake pool IDs jcli rest v0 stake-pools get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # list of stake pool IDs\n- 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615","breadcrumbs":"Core Ledger » jcli » REST » Get stake pools","id":"121","title":"Get stake pools"},"122":{"body":"Fetches stake information jcli rest v0 stake get [] - Epoch to get the stake distribution from. (optional) The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success jcli rest v0 stake get - stake distribution from the current epoch ---\nepoch: 228 # Epoch of last block\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool jcli rest v0 stake get 10 - stake distribution from a specific epoch (epoch 10 in this example) ---\nepoch: 10 # Epoch specified in the request\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool","breadcrumbs":"Core Ledger » jcli » REST » Get stake distribution","id":"122","title":"Get stake distribution"},"123":{"body":"Fetches network stats jcli rest v0 network stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- # node address (optional) addr: \"3.124.55.91:3000\" # hex-encoded node ID nodeId: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 # timestamp of when the connection was established establishedAt: \"2019-10-14T06:24:12.010231281+00:00\" # timestamp of last time block was received from node if ever (optional) lastBlockReceived: \"2019-10-14T00:45:57.419496113+00:00\" # timestamp of last time fragment was received from node if ever (optional) lastFragmentReceived: \"2019-10-14T00:45:58.419496150+00:00\" # timestamp of last time gossip was received from node if ever (optional) lastGossipReceived: \"2019-10-14T00:45:59.419496188+00:00\"","breadcrumbs":"Core Ledger » jcli » REST » Network stats","id":"123","title":"Network stats"},"124":{"body":"Fetches stake pool details jcli rest v0 stake-pool get - hex-encoded pool ID The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ntax: # pool reward fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)\ntotal_stake: 2000000000000 # total stake pool value\n# bech32-encoded stake pool KES key\nkesPublicKey: kes25519-12-pk1q7susucqwje0lpetqzjgzncgcrjzx7e2guh900qszdjskkeyqpusf3p39r\n# bech32-encoded stake pool VRF key\nvrfPublicKey: vrf_pk1rcm4qm3q9dtwq22x9a4avnan7a3k987zvepuxwekzj3uyu6a8v0s6sdy0l","breadcrumbs":"Core Ledger » jcli » REST » Get stake pool details","id":"124","title":"Get stake pool details"},"125":{"body":"Get the rewards history of a given epoch . jcli rest v0 rewards epoch get - epoch number to get the rewards history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards epoch get 82 -h [ { \"epoch\": 82, // the epoch number to collect rewards info from (rewards are from epoch 81) \"drawn\": 3835616440000, // Total Drawn from reward escrow pot for the epoch \"fees\": 1828810000, // Fees contributed into the pot the epoch \"treasury\": 462179124139, // Value added to the treasury \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1683091391, // pool's owned rewards from taxes 32665712521 // distributed rewards to delegators ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 47706672, 906426770 ], }, \"accounts\": { \"ed25519_pk1qqq6r7r7medu2kdpvdra5kwh8uz9frvftm9lf25shm7ygx9ayvss0nqke9\": 427549785, // Amount added to each account \"ed25519_pk1qqymlwehsztpzhy2k4szkp7j0xk0ra35jyxcpgr9p9q4ngvzzc5q4sh2gm\": 24399360, \"ed25519_pk1qq9h62jv6a0mz36xgecjrz9tm8z6ay3vj4d64ashxkgxcyhjewwsvgvelj\": 22449169, \"ed25519_pk1qq9l2qrqazk5fp4kt2kvjtsjc32g0ud888um8k2pvms0cw2r0uzsute83u\": 1787992, \"ed25519_pk1qqx6h559ee7pa67dm255d0meekt6dmq6857x302wdwrhzv47z9hqucdnt2\": 369024, } }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for a specific epoch","id":"125","title":"Get rewards history for a specific epoch"},"126":{"body":"Get the rewards history of the length last epoch(s) from tip. jcli rest v0 rewards history get - number of epochs, starting from the last epoch from tip, to get the reward history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards history get 2 -h [ { \"epoch\": 93, \"drawn\": 3835616440000, \"fees\": 641300000, \"treasury\": 467151470296, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1121750881, 21771124247 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 429241408, 8155586765 ], \"01bd272cede02d0b0c9cd47b16e5356ab3fb2330dd9d1e972ab5494365309d2a\": [ 1691506850, 32829041110 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 33311805, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 15809, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 10007789, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 545094806, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 4208232, }, }, { \"epoch\": 92, \"drawn\": 3835616440000, \"fees\": 620400000, \"treasury\": 480849578351, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 979164601, 19003786459 ], \"0105449dd66524111349ef677d1ebc25247a5ba2d094913f52aa4db265eac03a\": [ 26977274, 972170279 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 299744265, 5695141053 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 40581616, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 49156, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 12306084, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 142737175, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 3932910, }, }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for some epochs","id":"126","title":"Get rewards history for some epochs"},"127":{"body":"Get the list of voting committee members. jcli rest v0 vote active committees get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19 # list of members\n- f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db","breadcrumbs":"Core Ledger » jcli » REST » Get voting committee members","id":"127","title":"Get voting committee members"},"128":{"body":"Get the list of active voting plans and proposals. jcli rest v0 vote active plans get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- committee_end: epoch: 10 slot_id: 0 proposals: - external_id: adb92757155d09e7f92c9f100866a92dddd35abd2a789a44ae19ab9a1dbc3280 options: OneOf: max_value: 3 - external_id: 6778d37161c3962fe62c9fa8a31a55bccf6ec2d1ea254a467d8cd994709fc404 options: OneOf: max_value: 3 vote_end: epoch: 5 slot_id: 0 vote_start: epoch: 1 slot_id: 0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » REST » Get active voting plans and proposals","id":"128","title":"Get active voting plans and proposals"},"129":{"body":"Tooling for offline transaction creation and signing. jcli transaction Those familiar with cardano-cli transaction builder will see resemblance in jcli transaction. There is a couple of commands that can be used to: prepare a transaction: new create a new empty transaction; add-input add-account add-output finalize the transaction for signing: create witnesses and add the witnesses: make-witness add-witness seal the transaction, ready to send to the blockchain auth the transaction, if it contains a certificate There are also functions to help decode and display the content information of a transaction: info displays summary of transaction being constructed data-for-witness get the data to sign from a given transaction fragment-id get the Fragment ID from a transaction in sealed state to-message to get the hexadecimal encoded message, ready to send with cli rest message DEPRECATED : id get the data to sign from a given transaction (use data-for-witness instead)","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction","id":"129","title":"Transaction"},"13":{"body":"Leader are an abstraction related to the specific actor that have the ability to create block; In OBFT mode, the leader just the owner of a cryptographic key, whereas in Genesis-Praos mode, the leader is a stake pool.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leader","id":"13","title":"Leader"},"130":{"body":"On every stage of building a transaction user can display its summary jcli transaction info The options are: --prefix - set the address prefix to use when displaying the addresses (default: ca) --fee-certificate - fee per certificate (default: 0) --fee-coefficient - fee per every input and output (default: 0) --fee-constant - fee per transaction (default: 0) --fee-owner-stake-delegation - fee per owner stake delegation (default: fee-certificate) --fee-pool-registration - fee per pool registration (default: fee-certificate) --fee-stake-delegation - fee per stake delegation (default: fee-certificate) --fee-vote-cast - fee per vote cast --fee-vote-plan - fee per vote plan --output-format - Format of output data. Possible values: json, yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ . (default: yaml) --output - write the info in the given file or print it to the standard output --staging - place where the transaction is going to be saved during its staging phase. If a file is given, the transaction will be read from this file and modification will be written into this same file. If no file is given, the transaction will be read from the standard input and will be rendered in the standard output. YAML printed on success ---\nbalance: 40 # transaction balance or how much input is not spent\nfee: 60 # total fee for transaction\ninput: 200 # total input of transaction\ninputs: # list of transaction inputs, each can be of either \"utxo\" or \"account\" kind - index: 4 # index of transaction output kind: utxo # constant value, signals that UTxO is used # hex-encoded ID of transaction txid: 543326b2739356ab6d14624a536ca696f1020498b36456b7fdfe8344c084bfcf value: 130 # value of transaction output - # hex-encoded account address account: 3fd45a64ae5a3b9c35e37114baa099b8b01285f7d74b371597af22d5ff393d9f kind: account # constant value, signals that account is used value: 70 # value taken from account\nnum_inputs: 1 # total number of inputs of transaction\nnum_outputs: 1 # total number of outputs of transaction\nnum_witnesses: 1 # total number of witnesses of transaction\noutput: 100 # total output of transaction\noutputs: # list of transaction outputs - # bech32-encoded address address: ca1swedukl830v26m8hl7e5dzrjp77yctuz79a68r8jl2l79qnpu3uwz0kg8az value: 100 # value sent to address # hex-encoded transaction hash, when transaction is complete, it's also its ID\nsign_data_hash: 26be0b8bd7e34efffb769864f00d7c4aab968760f663a7e0b3ce213c4b21651b\nstatus: sealed # transaction status, can be \"balancing\", \"finalizing\", \"sealed\" or \"authed\"","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction info","id":"130","title":"Transaction info"},"131":{"body":"The following example focuses on using an utxo as input, the few differences when transfering from an account will be pointed out when necessary. Also, the simplified make-transaction command in jcli covers all this process. For more information run: jcli transaction make-transaction --help Let’s use the following utxo as input and transfer 50 lovelaces to the destination address","breadcrumbs":"Core Ledger » jcli » Transaction » Examples","id":"131","title":"Examples"},"132":{"body":"Field Value UTXO’s transaction ID 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c UTXO’s output index 0 associated address ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu associated value 100","breadcrumbs":"Core Ledger » jcli » Transaction » Input utxo","id":"132","title":"Input utxo"},"133":{"body":"address : ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6","breadcrumbs":"Core Ledger » jcli » Transaction » Destination address","id":"133","title":"Destination address"},"134":{"body":"jcli transaction new --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Create a staging area","id":"134","title":"Create a staging area"},"135":{"body":"For the input, we need to reference the utxo with the UTXO’s transaction ID and UTXO’S output index fields. We also need to specify how many coins there are with the associated value field.","breadcrumbs":"Core Ledger » jcli » Transaction » Add input","id":"135","title":"Add input"},"136":{"body":"jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 100 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - UTXO address as Input","id":"136","title":"Example - UTXO address as Input"},"137":{"body":"If the input is an account, the command is slightly different jcli transaction add-account account_address account_funds --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - Account address as Input","id":"137","title":"Example - Account address as Input"},"138":{"body":"For the output, we need the address we want to transfer to, and the amount. jcli transaction add-output ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 50 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add output","id":"138","title":"Add output"},"139":{"body":"We want to get the change in the same address that we are sending from (the associated address of the utxo). We also specify how to compute the fees. You can leave out the --fee-constant 5 --fee-coefficient 2 part if those are both 0. jcli transaction finalize ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu --fee-constant 5 \\ --fee-coefficient 2 --staging tx Now, if you run jcli transaction info --fee-constant 5 --fee-coefficient 2 --staging tx You should see something like this ---\nbalance: 0\nfee: 11\ninput: 100\ninputs: - index: 0 kind: utxo txid: 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c value: 100\nnum_inputs: 1\nnum_outputs: 2\nnum_witnesses: 0\noutput: 89\noutputs: - address: ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 value: 50 - address: ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu value: 39\nsign_data_hash: 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273\nstatus: finalizing","breadcrumbs":"Core Ledger » jcli » Transaction » Add fee and change address","id":"139","title":"Add fee and change address"},"14":{"body":"Transaction forms the cornerstone of the blockchain, and is one type of fragment and also the most frequent one. Transaction is composed of inputs and outputs; On one side, the inputs represent coins being spent, and on the other side the outputs represent coins being received. Inputs Alice (80$) Bob (20$) \\ / \\ / ----------- 100$ --------- / \\ Outputs Charlie (50$) Dan (50$) Transaction have fees that are defined by the blockchain settings and the following invariant hold: \\( \\sum Inputs = \\sum Outputs + fees \\) Transaction need to be authorized by each of the inputs in the transaction by their respective witness. In the most basic case, a witness is a cryptographic signature, but depending on the type of input can the type of witness vary.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Transaction","id":"14","title":"Transaction"},"140":{"body":"","breadcrumbs":"Core Ledger » jcli » Transaction » Sign the transaction","id":"140","title":"Sign the transaction"},"141":{"body":"For signing the transaction, you need: the hash of the genesis block of the network you are connected to. the private key associated with the input address (the one that’s in the utxos). the hash of the transaction, that can be retrieved in two ways: sign_data_hash value from jcli transaction info --staging tx or jcli transaction data-for-witness --staging tx The genesis’ hash is needed for ensuring that the transaction: cannot be re-used in another blockchain and for security concerns on offline transaction signing, as we are signing the transaction for the specific blockchain started by this block0 hash. First we need to get the hash of the transaction we are going to sign. jcli transaction data-for-witness --staging tx You should see something like this (the value may be different since it depends on the input/output data) 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 The following command takes the private key in the key.prv file and creates a witness in a file named witness in the current directory. jcli transaction make-witness --genesis-block-hash abcdef987654321... \\ --type utxo 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv Account input When using an account as input, the command takes account as the type and an additional parameter: --account-spending-counter, that should be increased every time the account is used as input. e.g. jcli transaction make-witness --genesis-block-hash abcdef987654321... --type account --account-spending-counter 0 \\ 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv","breadcrumbs":"Core Ledger » jcli » Transaction » Make witness","id":"141","title":"Make witness"},"142":{"body":"jcli transaction add-witness witness --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add witness","id":"142","title":"Add witness"},"143":{"body":"jcli transaction seal --staging tx jcli transaction to-message --staging tx > txmsg Send it using the rest api jcli rest v0 message post -f txmsg --host http://127.0.0.1:8443/api You should get some data back referring to the TransactionID (also known as FragmentID) d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2","breadcrumbs":"Core Ledger » jcli » Transaction » Send the transaction","id":"143","title":"Send the transaction"},"144":{"body":"You can check if the transaction was accepted by checking the node logs, for example, if the transaction is accepted jcli rest v0 message logs -h http://127.0.0.1:8443/api ---\n- fragment_id: d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2 last_updated_at: \"2019-06-11T15:38:17.070162114Z\" received_at: \"2019-06-11T15:37:09.469101162Z\" received_from: Rest status: InABlock: date: \"4.707\" block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\" Where the InABlock status means that the transaction was accepted in the block with date “4.707” and for block d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174. The status here could also be: Pending : if the transaction is received and is pending being added in the blockchain (or rejected). or Rejected : with an attached message of the reason the transaction was rejected. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Transaction » Checking if the transaction was accepted","id":"144","title":"Checking if the transaction was accepted"},"145":{"body":"Jormungandr supports decentralized voting with privacy features. The voting process is controlled by a committee whose private keys can be used to decrypt and certify the tally.","breadcrumbs":"Core Ledger » jcli » Voting » Voting","id":"145","title":"Voting"},"146":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Creating committee keys","id":"146","title":"Creating committee keys"},"147":{"body":"Please refer to jcli votes committee --help for help with the committee related cli operations and specification of arguments. In this example we will be using 3 kind of keys for the private vote and tallying. In order: Committee communication key jcli votes committee communication-key generate > ./comm.sk We can get its public representation with: jcli votes committee communication-key to-public --input ./comm.sk > ./comm.pk Committee member key jcli votes committee member-key generate --threshold 3 --crs \"$crs\" --index 0 --keys pk1 pk2 pk3 > ./member.sk Where pkX are each of the committee communication public keys in bech32 format. The order of the keys shall be the same for every member invoking the command, and the --index parameter provides the 0-based index of the member this key is generated for. Note that all committee members shall use the same CRS . We can also easily get its public representation as before: jcli votes committee member-key to-public --input ./member.sk ./member.pk Election public key This key ( public ) is the key every vote should be encrypted with. jcli votes election-key --keys mpk1 mpk2 mpk3 > ./vote.pk Notice that we can always rebuild this key with the committee member public keys found within the voteplan certificate . jcli rest v0 vote active plans > voteplan.json","breadcrumbs":"Core Ledger » jcli » Voting » Private","id":"147","title":"Private"},"148":{"body":"We need to provide a vote plan definition file to generate a new voteplan certificate. That file should be a yaml (or json) with the following format: { \"payload_type\": \"private\", \"vote_start\": { \"epoch\": 1, \"slot_id\": 0 }, \"vote_end\": { \"epoch\": 3, \"slot_id\": 0 }, \"committee_end\": { \"epoch\": 6, \"slot_id\": 0 }, \"proposals\": [ { \"external_id\": \"d7fa4e00e408751319c3bdb84e95fd0dcffb81107a2561e691c33c1ae635c2cd\", \"options\": 3, \"action\": \"off_chain\" }, ... ], \"committee_member_public_keys\": [ \"pk....\", ]\n} Where: payload_type is either public or private commitee_public_keys is only needed for private voting, can be empty for public. Then, we can generate the voteplan certificate with: jcli certificate new vote-plan voteplan_def.json --output voteplan.certificate","breadcrumbs":"Core Ledger » jcli » Voting » Creating a vote plan","id":"148","title":"Creating a vote plan"},"149":{"body":"To generate a vote cast transaction: firstly you need to generate vote-cast certificate following this instructions . Storing it into the ’vote-cast.certificate` now you can generate a transaction following this intructions . Note that a valid vote cast transaction MUST have only: one input with the corresponding account of the voter zero outputs 1 corresponding witness. Example (voter.sk contains a private key of the voter): genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\nvoter_addr=$(jcli address account $(jcli key to-public < voter.sk))\nvoter_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-cast public --choice 0 --proposal-index 0 --vote-plan-id \"$vote_plan_id\" --output vote-cast.certificate\njcli transaction new --staging vote-cast.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-cast.staging\njcli transaction add-certificate $(< vote-cast.certificate) --staging vote-cast.staging\njcli transaction finalize --staging vote-cast.staging\njcli transaction data-for-witness --staging vote-cast.staging > vote-cast.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter\n\"$voter_addr_counter\" $(< vote-cast.witness-data) vote-cast.witness committee.sk\njcli transaction seal --staging vote-cast.staging\njcli transaction to-message --staging vote-cast.staging > vote-cast.fragment\njcli rest v0 message post --file vote-cast.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Casting votes","id":"149","title":"Casting votes"},"15":{"body":"The blockchain has two methods of accounting which are interoperable: Unspent Transaction Output (UTXO) Accounts UTXO behaves like cash/notes, and work like fixed denomination ticket that are cumulated. This is the accounting model found in Bitcoin. A UTXO is uniquely reference by its transaction ID and its index. Accounts behaves like a bank account, and are simpler to use since exact amount can be used. This is the accounting model found in Ethereum. An account is uniquely identified by its public key. Each inputs could refer arbitrarily to an account or a UTXO, and similarly each outputs could refer to an account or represent a new UTXO. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Accounting","id":"15","title":"Accounting"},"150":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Tallying","id":"150","title":"Tallying"},"151":{"body":"To tally public votes, a single committee member is sufficient. In the example below, the file committee.sk contains the committee member’s private key in bech32 format, and block0.bin contains the genesis block of the voting chain. genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\ncommittee_addr=$(jcli address account $(jcli key to-public < committee.sk))\ncommittee_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-tally --vote-plan-id \"$vote_plan_id\" --output vote-tally.certificate\njcli transaction new --staging vote-tally.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-tally.staging\njcli transaction add-certificate $(< vote-tally.certificate) --staging vote-tally.staging\njcli transaction finalize --staging vote-tally.staging\njcli transaction data-for-witness --staging vote-tally.staging > vote-tally.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter \\ \"$committee_addr_counter\" $(< vote-tally.witness-data) vote-tally.witness committee.sk\njcli transaction add-witness --staging vote-tally.staging vote-tally.witness\njcli transaction seal --staging vote-tally.staging\njcli transaction auth --staging vote-tally.staging --key committee.sk\njcli transaction to-message --staging vote-tally.staging > vote-tally.fragment\njcli rest v0 message post --file vote-tally.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Public vote plan","id":"151","title":"Public vote plan"},"152":{"body":"To tally private votes, all committee members are needed. The process is similar to the public one, but we need to issue different certificates. First, we need to retrieve vote plans info: jcli rest v0 vote active plans > active_plans.json If there is more than one vote plan in the file, we also need to provide the id of the vote plan we are interested in. We can get the id of the first vote plan with: ...\nvote_plan_id=$(cat active_plans.json |jq '.[0].id')\n... Each committee member needs to generate their shares for the vote plan, which we will use later to decrypt the tally. jcli votes tally decryption-shares --vote-plan active_plans.json --vote-plan-id $\"vote_plan_id\" --key member.sk --output-format json Then, the committee members need to exchange their shares (only one full set of shares is needed). Once all shares are available, we need to merge them in a single file with the following command (needed even if there is only one set of shares): jcli votes tally merge-shares share_file1 share_file2 ... > merged_shares.json With the merged shares file, we are finally able to process the final tally result as follows: jcli votes tally decrypt-results \\\n--vote-plan active_plans.json \\\n--vote-plan-id $\"vote_plan_id\" \\\n--shares merged_shares.json \\\n--threshold number_of_committee_members \\\n--output-format json > result.json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Voting » Private vote plan","id":"152","title":"Private vote plan"},"153":{"body":"Here we will describe how to: delegate your stake to a stake pool - so that you can participate to the consensus and maybe collect rewards for that. register a stake pool retire a stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Staking with Jörmungandr » Staking with Jörmungandr","id":"153","title":"Staking with Jörmungandr"},"154":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » Delegating your stake","id":"154","title":"Delegating your stake"},"155":{"body":"Stake is concentrated in accounts, and you will need account public key to delegate its associated stake.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to create the delegation certificate","id":"155","title":"how to create the delegation certificate"},"156":{"body":"You will need: the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new owner-stake-delegation STAKE_POOL_ID --output stake_delegation.cert Note that the certificate is in blaco, there’s no account key used for its creation. In order for delegation to work it must be submitted to a node inside a very specific transaction: Transaction must have exactly 1 input The input must be from account The input value must be strictly equal to fee of the transaction Transaction must have 0 outputs The account used for input will have its stake delegated to the stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for own account","id":"156","title":"for own account"},"157":{"body":"You will need: account public key: a bech32 string of a public key the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new stake-delegation ACCOUNT_PUBLIC_KEY STAKE_POOL_ID --output stake_delegation.cert","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for any account","id":"157","title":"for any account"},"158":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_delegation.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key account_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » submitting to a node","id":"158","title":"submitting to a node"},"159":{"body":"This procedure is needed only for certificates that are to be included in the genesis config file. We need to make sure that the owner of the account is authorizing this delegation to happens, and for that we need a cryptographic signature. We will need the account secret key to create a signature jcli certificate sign --certificate stake_delegation.cert --key account_key.prv --output stake_delegation.signedcert The content of stake_delegation.signedcert will be something like: signedcert1q9uxkxptz3zx7akmugkmt4ecjjd3nmzween2qfr5enhzkt37tdt4uqt0j0039z5048mu9ayv3ujep5sl28q2cpdnx9fkvpq30lmjrrgtmqqctzczvu6e3v65m40n40c3y2pnu4vhd888dygkrtnfm0ts92fe50jy0h0ugh6wlvgy4xvr3lz4uuqzg2xgu6vv8tr24jrwhg0l09klp5wvwzl5 and can now be added in the genesis config file. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to sign your delegation certificate","id":"159","title":"how to sign your delegation certificate"},"16":{"body":"Jörmungandr network capabilities are split into: the REST API, used for informational queries or control of the node; the gRPC API for blockchain protocol exchange and participation; Here we will only review the gRPC API as the REST API is described in another chapter: go to the REST documentation","breadcrumbs":"Core Ledger » General Concepts » Network overview » Network overview","id":"16","title":"Network overview"},"160":{"body":"There are multiple components to be aware of when running a stake pool: your NodeId: it is the identifier within the blockchain protocol (wallet will delegate to your stake pool via this NodeId); your [ VRF ] key pairs: this is the cryptographic material we will use to participate to the leader election; your KES key pairs: this is the cryptographic material we will use to sign the block with. the stake pool Tax : the value the stake pool will take from the total reward due to the stake pool before distributing rewards (if any left) to the delegators. So in order to start your stake pool you will need to generate these objects.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Registering a stake pool","id":"160","title":"Registering a stake pool"},"161":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The primitives","id":"161","title":"The primitives"},"162":{"body":"To generate your [ VRF ] Key pairs, we will utilise jcli as described here : jcli key generate --type=RistrettoGroup2HashDhH stake_pool_vrf.prv stake_pool_vrf.prv file now contains the VRF private key. jcli key to-public --input stake_pool_vrf.prv stake_pool_vrf.pub stake_pool_vrf.pub file now contains the VRF public key.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » VRF key pair","id":"162","title":"VRF key pair"},"163":{"body":"Similar to above: jcli key generate --type=SumEd25519_12 stake_pool_kes.prv stake_pool_kes.prv file now contains the KES private key jcli key to-public --input stake_pool_kes.prv stake_pool_kes.pub stake_pool_kes.pub file now contains the KES public key","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » KES key pair","id":"163","title":"KES key pair"},"164":{"body":"There are 3 values you can set to configure the stake pool’s Tax : tax-fixed: this is the fixed cut the stake pool will take from the total reward due to the stake pool; tax-ratio: this is the percentage of the remaining value that will be taken from the total due tax-limit: a value that can be set to limit the pool’s Tax . All of these values are optionals, if not set, they will be set to 0. This will mean no tax for the stake pool: rewards are all distributed to the delegators.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Choosing the Tax parameters","id":"164","title":"Choosing the Tax parameters"},"165":{"body":"Let say you control a stake pool SP, with 2 owners (O1 and O2). During epoch 1, SP has created some blocks and is entitled to receive 10_000. Before distributing the 10_000 among the delegators, SP will take its Tax . we extract the tax-fixed. If this is greater or equal to the total (10_000) then we stop there, there is no more rewards to distribute. with what remains the SP extracts its tax-ratio and checks the tax from the ratio is not greater than tax-limit. the total SP rewards will then be distributed equally to the owners (O1 and O2). Note that if the --reward-account is set, the rewards for SP are then distributed to that account and nothing to O1 and O2. For example: total fixed ratio limit SP O1 O2 for delegators takes 100% 10000 0 1/1 0 10000 5000 5000 0 fixed of 1000 10000 1000 0/1 0 1000 500 500 9000 fixed + 10% 2000 1000 1/10 0 1100 550 550 900 fixed + 20% up to 150 2000 1000 1/5 150 1150 575 575 850","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » So how does this works","id":"165","title":"So how does this works"},"166":{"body":"--tax-limit The maximum tax value the stake pool will take. This will set the maximum the stake pool value will reserve for themselves from the `--tax-ratio` (excluding `--tax-fixed`).\n--tax-ratio The percentage take of the stake pool. Once the `tax-fixed` has been take, this is the percentage the stake pool will take for themselves. [default: 0/1]\n--tax-fixed set the fixed value tax the stake pool will reserve from the reward For example, a stake pool may set this value to cover their fixed operation costs. [default: 0]","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The options to set","id":"166","title":"The options to set"},"167":{"body":"The certificate is what will be sent to the blockchain in order to register yourself to the other participants of the blockchain that you are a stake pool too. jcli certificate new stake-pool-registration \\ --kes-key $(cat stake_pool_kes.pub) \\ --vrf-key $(cat stake_pool_vrf.pub) \\ --start-validity 0 \\ --management-threshold 1 \\ --tax-fixed 1000000 \\ --tax-limit 1000000000 \\ --tax-ratio \"1/10\" \\ --owner $(cat owner_key.pub) > stake_pool.cert The --operator flag is optional. And now you can retrieve your stake pool id (NodeId): jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » creating a stake pool certificate","id":"167","title":"creating a stake pool certificate"},"168":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_pool.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » submitting to a node","id":"168","title":"submitting to a node"},"169":{"body":"Stake pool can be retired by sending transaction with retirement certificate. From technical stand point, it is very similar to register stake pool operation. Before start we need to be sure, that: you have sufficient amount of ada to pay fee for transaction with retirement certificate. you know your stake pool id.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retiring a stake pool","id":"169","title":"Retiring a stake pool"},"17":{"body":"The protocol is based on gRPC that combines commonly used protocols like HTTP/2 and RPC. More precisely, Jörmungandr utilises. This choice was made because gRPC is already widely supported around the world because of it’s uitilization of standard protocols HTTP/2 which makes it much easier for Proxies and Firewalls to recognise the protocol and permit the traffic.","breadcrumbs":"Core Ledger » General Concepts » Network overview » The protocol","id":"17","title":"The protocol"},"170":{"body":"To retrieve your stake pool id: jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retrieve stake pool id","id":"170","title":"Retrieve stake pool id"},"171":{"body":"The certificate is what will be sent to the blockchain in order to retire your stake pool. jcli certificate new stake-pool-retirement \\ --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 \\ --retirement-time 0 \\ retirement.cert where: retirement.cert - write the output of to the retirement.cert --retirement-time 0 - 0 means as soon as possible. Which is until the next following epoch. --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 - hex-encoded stake pool ID.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » creating a retirement certificate","id":"171","title":"creating a retirement certificate"},"172":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat retirement.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. Important ! Please be sure that you have sufficient amount of owners signatures in order to retire stake pool. At least half of owners singatures (which were provided when registering stake pool) are required to sign retirement certificate. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » submitting to a node","id":"172","title":"submitting to a node"},"173":{"body":"This section is meant for advanced users and developers of the node, or if you wish to learn more about the node. At the moment, it only covers details on how to create your own blockchain genesis configuration, but in normal case, the blockchain configuration should be available with the specific blockchain system.","breadcrumbs":"Core Ledger » Advanced » Advanced » Advanced","id":"173","title":"Advanced"},"174":{"body":"The genesis file is the file that allows you to create a new blockchain from block 0. It lays out the different parameters of your blockchain: the initial utxo, the start time, the slot duration time, etc… Example of a BFT genesis file with an initial address UTxO and an account UTxO. More info regarding starting a BFT blockchain here and regarding addresses there . You could also find information regarding the jcli genesis tooling . You can generate a documented pre-generated genesis file: jcli genesis init For example your genesis file may look like: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch block0_date: {default_block0_date} # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' instead. # # otherwise leave as this discrimination: {discrimination} # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis block0_consensus: bft # Number of slots in each epoch. # # default value is {default_slots_per_epoch} slots_per_epoch: {default_slots_per_epoch} # The slot duration, in seconds, is the time between the creation # of 2 blocks # # default value is {default_slot_duration} slot_duration: {default_slot_duration} # set the block content max size # # This is the size, in bytes, of all the contents of the block (excluding the # block header). # # default value is {default_block_content_max_size} block_content_max_size: {default_block_content_max_size} # A list of Ed25519 PublicKey that represents the # BFT leaders encoded as bech32. The order in the list matters. consensus_leader_ids: - {leader_1} - {leader_2} # Epoch stability depth # # Optional: default value {default_epoch_stability_depth} epoch_stability_depth: {default_epoch_stability_depth} # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1] # # default value: {default_consensus_genesis_praos_active_slot_coeff} consensus_genesis_praos_active_slot_coeff: {default_consensus_genesis_praos_active_slot_coeff} # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate] linear_fees: # this is the minimum value to pay for every transaction constant: 2 # the additional fee to pay for every inputs and outputs coefficient: 1 # the additional fee to pay if the transaction embeds a certificate certificate: 4 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: # certificate_owner_stake_delegation: 1 # Proposal expiration in epochs # # default value: {default_proposal_expiration} proposal_expiration: {default_proposal_expiration} # The speed to update the KES Key in seconds # # default value: {default_kes_update_speed} kes_update_speed: {default_kes_update_speed} # Set where to send the fees generated by transactions activity. # # by default it is send to the \"rewards\" pot of the epoch which is then # distributed to the different stake pools who created blocks that given # epoch. # # It is possible to send all the generated fees to the \"treasury\". # # Optional, default is \"rewards\" # fees_go_to: \"rewards\" # initial value the treasury will start with, if not set the treasury # starts at 0 treasury: 1000000000000 # set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document # # if not set, the treasury will not grow treasury_parameters: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # It is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: # max_limit: 10000 # Set the total reward supply available for monetary creation # # if not set there is no monetary creation # once emptied, there is no more monetary creation total_reward_supply: 100000000000000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate) # reward_parameters: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 100 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: \"13/19\" # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 1 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 3 # set some reward constraints and limits # # this value is optional, the default is no constraints at all. The settings # are commented below: # #reward_constraints: # # limit the epoch total reward drawing limit to a portion of the total # # active stake of the system. # # # # for example, if set to 10%, the reward drawn will be bounded by the # # 10% of the total active stake. # # # # this value is optional, the default is no reward drawing limit # reward_drawing_limit_max: \"10/100\" # # # settings to incentivize the numbers of stake pool to be registered # # on the blockchain. # # # # These settings does not prevent more stake pool to be added. For example # # if there is already 1000 stake pools, someone can still register a new # # stake pool and affect the rewards of everyone else too. # # # # if the threshold is reached, the pool doesn't really have incentive to # # create more blocks than 1 / set-value-of-pools % of stake. # # # # this value is optional, the default is no pool participation capping # pool_participation_capping: # min: 300 # max: 1000 # list of the committee members, they will be used to guarantee the initial # valid operation of the vote as well as privacy. committees: - \"7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19\" - \"f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db\" # Initial state of the ledger. Each item is applied in order of this list\ninitial: # Initial deposits present in the blockchain - fund: # UTxO addresses or account - address: {initial_funds_address_1} value: 10000 - address: {initial_funds_address_2} value: 10000 # Initial token distribution - token: token_id: 00000000000000000000000000000000000000000000000000000000.7e5d6abc to: - address: {initial_funds_address_1} value: 150 - address: {initial_funds_address_2} value: 255 - token: token_id: 00000000000000000000000000000000000000000000000000000000.6c1e8abc to: - address: {initial_funds_address_1} value: 22 - address: {initial_funds_address_2} value: 66 # Initial certificates #- cert: .. # Initial deposits present in the blockchain #- legacy_fund: # # Legacy Cardano address # - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 # value: 123 There are multiple parts in the genesis file: blockchain_configuration: this is a list of configuration parameters of the blockchain, some of which can be changed later via the update protocol; initial: list of steps to create initial state of ledger","breadcrumbs":"Core Ledger » Advanced » genesis file » genesis file","id":"174","title":"genesis file"},"175":{"body":"option format description block0_date number the official start time of the blockchain, in seconds since UNIX EPOCH discrimination string production or test block0_consensus string bft slot_duration number the number of seconds between the creation of 2 blocks epoch_stability_depth number allowed size of a fork (in number of block) consensus_leader_ids array the list of the BFT leader at the beginning of the blockchain block_content_max_size number the maximum size of the block content (excluding the block header), in bytes. linear_fees object linear fee settings, set the fee for transaction and certificate publishing consensus_genesis_praos_active_slot_coeff number genesis praos active slot coefficient. Determines minimum stake required to try becoming slot leader, must be in range (0,1] kes_update_speed number the speed to update the KES Key in seconds slots_per_epoch number number of slots in each epoch for more information about the BFT leaders in the genesis file, see Starting a BFT Blockchain","breadcrumbs":"Core Ledger » Advanced » genesis file » blockchain_configuration options","id":"175","title":"blockchain_configuration options"},"176":{"body":"Each entry can be one of 3 variants: variant format description fund sequence initial deposits present in the blockchain (up to 255 outputs per entry) cert string initial certificate legacy_fund sequence same as fund, but with legacy Cardano address format Example: initial: - fund: - address:
value: 10000 - address: value: 20000 - address: value: 30000 - cert: - legacy_fund: - address: value: 123 - fund: - address: value: 1001","breadcrumbs":"Core Ledger » Advanced » genesis file » initial options","id":"176","title":"initial options"},"177":{"body":"variant format description address string can be a single address or an account address value number assigned value legacy_fund differs only in address format, which is legacy Cardano Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » genesis file » fund and legacy_fund format","id":"177","title":"fund and legacy_fund format"},"178":{"body":"BFT stands for the Byzantine Fault Tolerant ( read the paper ). Jormungandr allows you to start a BFT blockchain fairly easily. The main downside is that it is centralized, only a handful of nodes will ever have the right to create blocks.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » starting a bft node","id":"178","title":"starting a bft node"},"179":{"body":"It is fairly simple. A given number of Nodes (N) will generate a key pairs of type Ed25519 (see JCLI’s Keys ). They all share the public key and add them in the genesis.yaml file. It is the source of truth, the file that will generate the first block of the blockchain: the Block 0 . Then, only by one after the other, each Node will be allowed to create a block. Utilising a Round Robin algorithm.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » How does it work","id":"179","title":"How does it work"},"18":{"body":"The protocol allows you to send multiple types of messages between nodes: sync block to remote peer’s Last Block (tip). propose new fragments (new transactions, certificates, …): this is for the fragment propagation. propose new blocks: for block propagation. There are other commands that optimise the communication and synchronization between nodes that will be documented here in the future. Another type of messages is the Gossip message. These gossip messages allow Nodes to exchange information (gossips) about other nodes on the network, allowing for peer discovery.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Type of queries","id":"18","title":"Type of queries"},"180":{"body":"blockchain_configuration: block0_date: 1550822014 discrimination: test block0_consensus: bft slots_per_epoch: 5 slot_duration: 15 epoch_stability_depth: 10 consensus_leader_ids: - ed25519e_pk1k3wjgdcdcn23k6dwr0cyh88ad7a4ayenyxaherfazwy363pyy8wqppn7j3 - ed25519e_pk13talprd9grgaqzs42mkm0x2xek5wf9mdf0eefdy8a6dk5grka2gstrp3en consensus_genesis_praos_active_slot_coeff: 0.22 linear_fees: constant: 2 coefficient: 1 certificate: 4 kes_update_speed: 43200\ninitial: - fund: - address: ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0 value: 10000 - cert: cert1qgqqqqqqqqqqqqqqqqqqq0p5avfqqmgurpe7s9k7933q0wj420jl5xqvx8lywcu5jcr7fwqa9qmdn93q4nm7c4fsay3mzeqgq3c0slnut9kns08yn2qn80famup7nvgtfuyszqzqrd4lxlt5ylplfu76p8f6ks0ggprzatp2c8rn6ev3hn9dgr38tzful4h0udlwa0536vyrrug7af9ujmrr869afs0yw9gj5x7z24l8sps3zzcmv - legacy_fund: - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 value: 123 In order to start your blockchain in BFT mode you need to be sure that: consensus_leader_ids is non empty; more information regarding the genesis file here .","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Example of genesis file","id":"180","title":"Example of genesis file"},"181":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin This command will create (or replace) the Block 0 of the blockchain from the given genesis configuration file (genesis.yaml).","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Creating the block 0","id":"181","title":"Creating the block 0"},"182":{"body":"Now that the blockchain is initialized, you need to start your node. Write your private key in a file on your HD: $ cat node_secret.yaml\nbft: signing_key: ed25519_sk1hpvne... Configure your Node (config.yml) and run the following command: $ jormungandr --genesis-block block-0.bin \\ --config example.config \\ --secret node_secret.yaml It’s possible to use the flag --secret multiple times to run a node with multiple leaders.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Starting the node","id":"182","title":"Starting the node"},"183":{"body":"Generate initial config jcli genesis init > genesis.yaml Generate secret key, e.g. jcli key generate --type=Ed25519 > key.prv Put secret key in a file, e.g. node_secret.yaml as follows: bft:\nsigning_key: ed25519_sk1kppercsk06k03yk4qgea.... Generate public key out of previously generated key cat key.prv | jcli key to-public Put generated public key as in genesis.yaml under consensus_leader_ids: Generate block = jcli genesis encode --input genesis.yaml --output block-0.bin Create config file and store it on your HD as node.config e.g. -> ---\nlog: level: trace format: json\nrest: listen: \"127.0.0.1:8607\"\np2p: public_address: /ip4/127.0.0.1/tcp/8606 topics_of_interest: messages: low blocks: normal Start Jörmungandr node : jormungandr --genesis-block block-0.bin --config node.config --secret node_secret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Step by step to start the BFT node","id":"183","title":"Step by step to start the BFT node"},"184":{"body":"Additionally, there is a script here that can be used to bootstrap a test node with bft consensus protocol. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Script","id":"184","title":"Script"},"185":{"body":"When starting a genesis praos blockchain there is an element to take into consideration while constructing the block 0: the stake distribution . In the context of Genesis/Praos the network is fully decentralized and it is necessary to think ahead about initial stake pools and to make sure there is stake delegated to these stake pools. In your genesis yaml file, make sure to set the following values to the appropriate values/desired values: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: block0_consensus: genesis_praos consensus_genesis_praos_active_slot_coeff: 0.1 kes_update_speed: 43200 # 12hours block0_consensus set to genesis_praos means you want to start a blockchain with genesis praos as the consensus layer. consensus_genesis_praos_active_slot_coeff determines minimum stake required to try becoming slot leader, must be in range 0 exclusive and 1 inclusive.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » starting a genesis blockchain","id":"185","title":"starting a genesis blockchain"},"186":{"body":"In the initial_certs field you will set the initial certificate. It is important to declare the stake pool and delegate stake to them. Otherwise no block will ever be created. Remember that in this array the order matters: In order to delegate your stake, you need a stake pool to already exist, so the stake pool registration certificate should go first.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » The initial certificates","id":"186","title":"The initial certificates"},"187":{"body":"Now you can register a stake pool. Follow the instructions in registering stake pool guide . The owner key (the key you sign the stake pool registration certificate) is the secret key associated to a previously registered stake key.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Stake pool registration","id":"187","title":"Stake pool registration"},"188":{"body":"Now that there is both your stake key and there are stake pools available in the block0 you need to delegate to one of the stake pool. Follow the instruction in delegating stake . And in the initial funds start adding the addresses. To create an address with delegation follow the instruction in JCLI’s address guide . Utilise the stake key registered previously as group address: jcli address single $(cat wallet_key.pub) $(cat stake_key.pub)\nta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm You will notice that addresses with delegation are longer (about twice longer) than addresses without delegation. For example, the most minimal setting you may have is: initial_certs: # register a stake pool (P), owner of the stake pool is the stake key (K) - cert1qsqqqqqqqqqqqqqqqqqqq0p5avfqp9tzusr26chayeddkkmdlap6tl23ceca8unsghc22tap8clhrzslkehdycufa4ywvqvs4u36zctw4ydtg7xagprfgz0vuujh3lgtxgfszqzqj4xk4sxxyg392p5nqz8s7ev5wna7eqz7ycsuas05mrupmdsfk0fqqudanew6c0nckf5tsp0lgnk8e8j0dpnxvjk2usn52vs8umr3qrccegxaz # delegate stake associated to stake key (K) to stake pool (P) - cert1q0rv4ccl54k99rtnm39xvhwvqcwjcm385n2dwvamahpu5tmdz3plt65rpewev3a03xj7nfx5pz0xap2cjxjnxvt2ma9y9dalzder3xm5qyqyq0lx05ggrws0ghuffqrg7scqzdsd665v4m7087eam5zvw4f26v2tsea3ujrxly243sgqkn42uttk5juvq78ajvfx9ttcmj05lfuwtq9qhdxzr0 initial_funds: # address without delegation - address: ta1swx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjsczt057x value: 10000 # address delegating to stake key (K) - address: ta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm value: 1000000","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Delegating stake","id":"188","title":"Delegating stake"},"189":{"body":"Now, to start the node and be able to generate new blocks, you have to put your pool’s private keys and id in a file. Then start the node with the --secret filename parameter. For example, if you follow the examples of the registering stake pool guide You could create a file called poolsecret.yaml with the following content. genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file And you could start the node with this command jormungandr --genesis-block block-0.bin --config config.yaml --secret poolsecret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Starting the node","id":"189","title":"Starting the node"},"19":{"body":"The peer 2 peer connections are established utilising multiple components: A multilayered topology (e.g. Poldercast ); Gossiping for node discoverability; Subscription mechanism for event propagation; Security and countermeasures: (such as Topology Policy for scoring and/or blacklisting nodes);","breadcrumbs":"Core Ledger » General Concepts » Network overview » Peer to peer","id":"19","title":"Peer to peer"},"190":{"body":"There is a script here that can be used to bootstrap a test node with a pre-set faucet and stake pool and can be used as an example. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Test script","id":"190","title":"Test script"},"191":{"body":"Please just brain dump everything you know about the above topics, or anything related to them, either individually or interrelated. This process is not intended to consume an excessive amount of your time, so focus more on getting the information you have to contribute down in the quickest way possible. Don’t be overly concerned with format or correctness, its not a test. If you think things work in a particular way, describe it. Obviously, different people will know different things, don’t second guess info and not include it because you think someone else might say it. If you have technical details, like the format of a data entity that can be explained, please include it. This is intended to become a deep dive, to the byte level. If you want to, feel free to x-ref the code as well. Add what you know (if anything) in the section below your name and submit a PR to the DOCS branch (not main) with Steven Johnson for review. I will both review and merge these. I will also start collating the data once this process is complete, and we can then iterate until the picture is fully formed and accurate. Feel free to include other .md files if there is a big piece of information, such as the format of a vote transaction, or the vote plan section of block 0, etc. Or refer to other documentation we may already have (in any form, eg confluence, jira issue or Miro, or the old repos or Anywhere else is ok.). For Jormungandr, we are particularly interested in: How the vote plan is set up, what the various fields of the vote plan are and how they are specified. 2. How individual votes relate to vote-plans. 3. How votes are prevented from being cast twice by the same voter. 4. The format of the entire vote transaction, both public and private. 5. How is the tally conducted? (is it done in Jormungandr, or with the jcli tool for example)? 6. Anything else which is not listed but is necessary to fully understand the votes cast in Jormungandr. Don’t feel limited by this list, if there is anything else the list doesn’t cover but you want to describe it, please do.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate","id":"191","title":"How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate"},"192":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Sasha Prokhorenko","id":"192","title":"Sasha Prokhorenko"},"193":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Nicolo Padovani","id":"193","title":"Nicolo Padovani"},"194":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Felipe Rosa","id":"194","title":"Felipe Rosa"},"195":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Joaquin Rosales","id":"195","title":"Joaquin Rosales"},"196":{"body":"This field is not very well documented, except for a line in book/src/core-vitss-doc/api/v0.yaml that describes it as: > Identifier of the proposal on the blockchain. Internally, the identifier is of type ExternalProposalId (src/chain-libs/chain-impl-mockchain/src/certificate/vote_plan.rs). This is an alias type for DigestOf, from the chain_crypto crate. This is undocumented. The ExternalProposalId is sent through the wire and csv files as a 64-character hex-encoded string. The catalyst-toolbox binary decodes this hex string, and converts it into a valid ExternalProposalId. So that the underlying [u8; 32] can be extracted, hashed and used in logic related to rewards thresholds, votes, and dreps. There is an arbitrary snapshot generator used in vit-servicing-station-tests. It creates valid ExternalProposalId from a randomized [u8; 32] array that is used in integration tests found in vit-testing.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Proposal.chain_proposal_id","id":"196","title":"Proposal.chain_proposal_id"},"197":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefano Cunego","id":"197","title":"Stefano Cunego"},"198":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Conor Gannon","id":"198","title":"Conor Gannon"},"199":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Alex Pozhylenkov","id":"199","title":"Alex Pozhylenkov"},"2":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Introduction » What is Catalyst-Core","id":"2","title":"What is Catalyst-Core"},"20":{"body":"As described in the Poldercast paper, our network topology is built on multiple layers that allow for granular control of it’s behavior. In practice this means a node will have different groups of nodes that it connects to based on different algorithms, each of these groups are a subset of the whole known list of nodes. In short we have: The rings layer selects a predecessor(s) and a successor(s) for each topic (Fragment or Blocks); The Vicinity layer will select nodes that have similar interests; The Cyclon layer, will select nodes randomly. However, we keep the option open to remove some of these layers or to add new ones, such as: A layer to allow privilege connections between stake pools; A layer for the user’s whitelist, a list of nodes the users considered trustworthy and that we could use to check in the current state of the network and verify the user’s node is not within a long running fork;","breadcrumbs":"Core Ledger » General Concepts » Network overview » Multilayered topology","id":"20","title":"Multilayered topology"},"200":{"body":"Spending counter associated to an account. Every time the owner is spending from an account, the counter is incremented. This features is similar to the Ethereum nonce field in the block and prevents from the replay attack. pub struct SpendingCounter(pub(crate) u32); As it was said before every account associated with the a current state of the Spending Counter. Or to be more precised to an array of 8 Spending counters. pub struct SpendingCounterIncreasing { nexts: Vec,\n} Each spending counter differers with each other. The specified lane bits are a first 3 bits of the original Spending counter value. Spending counter structure: (001)[lane] (00000 00000000 00000000 00000001){counter}\n(00100000 00000000 00000000 00000001){whole Spending Counter} With such approach user can: generate up to 8 transactions with the specified different lanes and corresponding counters submit it into the blockchain with no matter on the transaction processing order. So incrementing of the counter will be done in “parallel” for each lane. That is the only difference with the original Ethereum approach with nonce (counter in our implementation). Where for each transaction you should specify an exact value and submits transaction in the exact order.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Spending Counters","id":"200","title":"Spending Counters"},"201":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Cameron Mcloughlin","id":"201","title":"Cameron Mcloughlin"},"202":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Dariusz Kijania","id":"202","title":"Dariusz Kijania"},"203":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Ognjen Dokmanovic","id":"203","title":"Ognjen Dokmanovic"},"204":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefan Rasevic","id":"204","title":"Stefan Rasevic"},"205":{"body":"This directory contains Jormungandr’s specifications. file content network the node to node communication and the peer to peer topology","breadcrumbs":"Core Ledger » Jormungandr Specifications » Jormungandr Specifications » Jormungandr Specifications","id":"205","title":"Jormungandr Specifications"},"206":{"body":"This is the migration plan for current cardano blockchain (henceforth refered as legacy) to jormungandr style state and formats.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » MIGRATION","id":"206","title":"MIGRATION"},"207":{"body":"Block Zero: first/genesis block of the blockchain.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Vocabulary","id":"207","title":"Vocabulary"},"208":{"body":"It’s paramount for all users from the legacy chain to find their precious data after the migration. Also as one secondary consideration, the users need not to be aware, as much as possible of the transition, apart from requiring new or updated software capable of handling the new formats and processes. Lastly, it would be useful to provide some kind of cryptographic continuinity of the chains, increasing assurances during transition. The first thing that need consideration is the legacy utxos. We need the ability to take the latest known state of coin distribution and transfer this as is to the new state order. The settings of the legacy chain, are automatically superseded by the new settings mandatory in block zero, so there’s no need to keep any related data. The heavy/light delegation certificates are also superseded by either the BFT leaders or the Genesis-Praos stake pools defined explicitely in block zero. From a user experience and offering continuinity of history, it would be preferable to start the chain initial date at the end of the legacy one. This way the user can still refer to historical transaction in the legacy era of the chain without seeing similar block date on two different era. Finally it’s important to provide as much guarantee as possible of the transition, and hence knowing the hash of last block of the legacy chain on “the other side”, would allow some validation mechanism. Block 0 content being a trusted data assumption, having the previous hash embedded directly inside, reconstruct the inherent chain of trust of a blockchain cheaply.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Description","id":"208","title":"Description"},"209":{"body":"To support this, the following continuinity mechanisms are thus available: blockchain continuity: the ability to embed inside block zero of the chain an arbitrary hash of data, representing the last block of the legacy chain. user experience: block zero choice of start of epoch (e.g. starting the new chain at epoch 129). legacy funds: A sequence of legacy address and their associated values Note: On the blockchain continuity, we decided to store the hash as an opaque blob of data in the content, instead of using the normal blockchain construction of the previous hash. Using the previous hash, would have made the start condition of the blockchain harder to detect compared to the sentinel 0 value currently in place and would have forced to have an identical hash size by construction. The legacy funds are automatically assigned a new transaction-id / index in the new system, compared to whichever computed transaction-id / index in the legacy chain. This new transaction-id is computed similarly from normal transaction in the new system, and no special case has been added to support this. However the legacy address is stable across this transition, allowing user to find their funds on whichever address it was left, at the value it was left.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mechanisms","id":"209","title":"Mechanisms"},"21":{"body":"Gossiping is the process used for peer discovery. It allows two things: For any nodes to advertise themselves as discoverable; To discover new nodes via exchanging a list of nodes (gossips); The gossips are selected by the different layers of the multilayered topology. For the Poldercast modules, the gossips are selected just as in the paper. Additional modules may select new nodes in the gossip list or may decide to not add any new information.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Gossiping","id":"21","title":"Gossiping"},"210":{"body":"To clearly break from the past, the old funds are only allowed to be consumed, leading to the old state monotonically decreasing. This also prevent from having the old legacy address construction available in witness or outputs. The transaction-id/index system is the same as normal funds, so the inputs doesn’t requires any modification, however we need to distinguish the witness since the witness on the old chain is different. This provide a clear mechanism to distinguish the type of input (fund or old-fund). The witness construction is similar to what is found on the old chain, an extended public key followed by a signature.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Transaction","id":"210","title":"Transaction"},"211":{"body":"Considering the risk involve in such a migration, we can repeatly tests mock migration at arbitrary points (preferably at end of epoch). The migration itself will be fully automated and repeadtly tested for solidity and accuracy, and can be done with mostly off the shelf code that we already have. The migration will capture the latest known state and create the equivalent genesis.yaml file mingled with the settings for the new blockchain, and subsequently compiled into a working block0. The task itself should be completeable in sub-second, leading to a very small window of transition. Although to note, the block0 size is proportional to the number of state point that is being kept; Approximately for ~200000 utxos, 13mb of block zero will be created. rust-cardano’s chain-state is already capable to capture the latest known state, but there’s no currently any genesis generational tool for this task, although the task remain fairly simple.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mainnet-Testnet tests","id":"211","title":"Mainnet-Testnet tests"},"212":{"body":"The net benefits is the total removal of all legacy constructs; The new users or software have no need to handle any of the legacy data. This also provide an implicit net chain “compression”: what happened in Byron, stays in Byron. The legacy addresses are particularly problematic for many reasons not described here, but not providing full usage is particularly advantageous, nonetheless since it provide a way to not have their numbers go up ever after transition.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Advantages","id":"212","title":"Advantages"},"213":{"body":"From historical purpose and bip44 wallets, we need to provide the legacy blocks. The legacy blocks can be made available from a 3rd party service for a one-of 2.0 Gb download (approximate: all the mainnet data), for example using a service like cardano-http-bridge which have caching and CDN capability, leading to a very small cost for the provider of such a service. It’s also possible to provide the historical data as part of the node, supplementing the current interface with an interface to download old data ala cardano-http-bridge. The first option is strongly favored to cleanly break the legacy data from the new data. Legacy randomized wallets (e.g. Ddz addresses) will not need to download the full history, since the legacy address contains the metadata sufficient for recovery, so only block zero is necessary to know their own fund. On the other hand, legacy BIP44 wallets will need to download the full history to be able to recover their BIP44 state at the transition. For wallet history of legacy wallets, the historical data will have to be downloaded too. For new wallet, after the transition, this historical data will not be needed whatsoever, saving 2.0gb of download for new users. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Historical data","id":"213","title":"Historical data"},"214":{"body":"Bringing Ouroboros to the people","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Network","id":"214","title":"Network"},"215":{"body":"This document highlights the requirements we wish to apply to a decentralised network applied to cardano blockchain. Then we will discuss the possible solutions we can provide in a timely manner and the tradeoff we will need to make.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Introduction","id":"215","title":"Introduction"},"216":{"body":"This is a main of general guidelines for the design decision in this document, and to judge the merit of solutions: Efficiency : the communication between the nodes needs to be succinct. to the point, avoiding unnecessary redundancies. The protocol needs to stabilise quickly to a well distributed network, guaranteeing a fast propagation of the important events; Security : limit the ability for other nodes to trigger behavior that would prevent a peer from working (e.g. unbounded resources usage) Simplicity : we need to easily implement the protocol for any platforms or environment that will matter for our users.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design decisions guidelines","id":"216","title":"Design decisions guidelines"},"217":{"body":"This section describes the communication between 2 different peers on the network. It involves synchronous queries with the context of the local state and remote state.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Node communication","id":"217","title":"Node-to-Node communication"},"218":{"body":"This is a general high level list of what information will need to be exchanged: Bootstrap local state from nothing Update local state from an arbitrary point Answer Synchronous queries: RPC style Asynchronous messages for state propagation (transactions, blocks, ..) P2P messages (See P2P Communication)","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » General Functionality","id":"218","title":"General Functionality"},"219":{"body":"User Stories Alice wants to synchronise its local state from Bob from Alice’s Tip: Alice downloads Block Headers from Bob (starting from Alice’s Tip); Bob does not know this Tip: Error: unknown block Alice starts again with a previous Tip; Bob does know this state: Bob streams back the block headers Alice downloads block Since Alice knows the list of Block Headers and the number of blocks to download, Alice can download from multiple peers, requiring to get block stream from different Hash in this list of Block; State: tip_hash, storage Pseudocode (executed by Alice): sync(): bob.get_headers(alice.tip) Alice wants to propagate a transaction to Bob Alice send the transaction hash to Bob Bob replies whether it want to hear more Alice send the transaction to Bob if Bob agrees Alice wants to submit a Block to Bob Alice sends the Header to Bob; Bob replies whether it want to hear more Alice sends the Block to Bob if Bob agrees Alice want to exchange peers with Bob High Level Messages We model everything so that we don’t need any network state machine. Everything is stateless for Handshake: () -> (Version, Hash) This should be the first request performed by the client after connecting. The server responds with the protocol version and the hash of the genesis block. The handshake is used to establish that the remote node has a compatible protocol implementation and serves the right block chain. Tip: () -> Header: Return the header of the latest block known by the peer (also known as at the tip of the blockchain). DD? : Block vs hash: block is large but contain extra useful metadata (slotid, prevhash), whereas hash is small. GetHeaders: ([Hash]) -> [Header]: Fetch the headers (cryptographically verifiable metadata summaries) of the blocks identified by hashes. GetBlocks: ([Hash]) -> [Block]: Like GetHeaders, but returns full blocks. PullBlocksToTip: ([Hash]) -> Stream: Retrieve a stream of blocks descending from one of the given hashes, up to the remote’s current tip. This is an easy way to pull blockchain state from a single peer, for clients that don’t have a need to fiddle with batched GetBlocks requests and traffic distribution among multiple peers. BlockSubscription: (Stream
) -> Stream Establish a bidirectional subscription to send and receive announcements of new blocks and (in the client role) receive solicitations to upload blocks or push the chain of headers. The stream item is a tagged enumeration: BlockEvent: Announce(Header)|Solicit([Hash])|Missing([Hash], Hash) Announce propagates header information of a newly minted block. Solicit requests the client to upload blocks identified by the given hashes using the UploadBlocks request. Missing requests the client to stream the chain of block headers using the given range parameters. The meaning of the parameters is the same as in the PullHeaders request. The client does not need to stream solicitations upwards, as it can request blocks directly with GetBlocks or PullHeaders. The announcements send in either direction are used for both announcing new blocks when minted by this node in the leadership role, and propagating blocks received from other nodes on the p2p network. PullHeaders: ([Hash], Hash) -> Stream
Retrieve a stream of headers for blocks descending from one of the hashes given in the first parameter, up to the hash given in the second parameter. The starting point that is latest in the chain is selected. The client sends this request after receiving an announcement of a new block via the BlockSubscription stream, when the parent of the new block is not present in its local storage. The proposed starting points are selected from locally known blocks with exponentially receding depth. PushHeaders: (Stream
) Streams the chain of headers in response to a Missing event received via the BlockSubscription stream. UploadBlocks: (Stream) Uploads blocks in response to a Solicit event received via the BlockSubscription stream. ContentSubscription: (Stream) -> Stream Establish a bidirectional subscription to send and receive new content for the block under construction. Used for submission of new fragments submitted to the node by application clients, and for relaying of fragment gossip on the network. P2P Messages: see P2P messages section. The protobuf files describing these methods are available in the proto directory of chain-network crate in the chain-libs project repository. Pseudocode chain sync algorithm struct State { ChainState chain_state, HashMap blocks\n} struct ChainState { Hash tip, HashSet ancestors, Utxos ..., ...\n} impl ChainState { Fn is_ancestor(hash) -> bool { self.ancestors.exists(hash) }\n} // Fetch ‘dest_tip’ from `server’ and make it our tip, if it’s better.\nsync(state, server, dest_tip, dest_tip_length) { if is_ancestor(dest_tip, state.chain_state.tip) { return; // nothing to do } // find a common ancestor of `dest_tip` and our tip. // FIXME: do binary search to find exact most recent ancestor n = 0; loop { hashes = server.get_chain_hashes(dest_tip, 2^n, 1); if hashes == [] { ancestor = genesis; break; } ancestor = hashes[0]; if state.chain_state.has_ancestor(ancestor): { break } n++; } // fetch blocks from ancestor to dest_tip, in batches of 1000 // blocks, forwards // FIXME: integer arithmetic is probably off a bit here, but you get the idea. nr_blocks_to_fetch = 2^n; batch_size = 1000; batches = nr_blocks_to_fetch / batch_size; new_chain_state = reconstruct_chain_state_at(ancestor); for (i = batches; i > 0; i--) { // validate the headers ahead of downloading blocks to validate // cryptographically invalid blocks. It is interesting to do that // ahead of time because of the small size of a BlockHeader new_hashes = server.get_chain_hashes(dest_tip, (i - 1) * batch_size, batch_size); new_headers = server.get_headers(new_hashes); if new_headers are invalid { stop; } new_blocks = server.get_blocks(new_hashes).reverse(); for block in new_blocks { new_chain_state.validate_block(block)?; write_block_to_storage(block); } } if new_chain_state.chain_quality() > state.chain_state.chain_quality() { state.chain_state = new_chain_state }\n} Choice of wire Technology We don’t rely on any specific wire protocol, and only require that the wire protocol allow the transfer of the high level messages in a bidirectional way. We chose to use GRPC/Protobuf as initial technology choice: Efficiency : Using Protobuf, HTTP2 , binary protocol Bidirectional : through HTTP2, allowing stream of data. data push on a single established connection. Potential Authentication : Security / Stream atomicity towards malicious MITM Simplicity : Many languages supported ( code generation , wide support ) Language/Architecture Independent : works on everything Protobuf file acts as documentation and are relatively easy to version Connections and bidirectional subscription channels can be left open (especially for clients behind NAT), although we can cycle connections with a simple RCU-like system.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design","id":"219","title":"Design"},"22":{"body":"Based on the multilayered topology, the node will open multiplexed and bi-directional connections (thanks to industry standard gRPC , this comes for free). These bi-directional connections are used to propagate events such as: Gossiping events, when 2 nodes exchange gossips for peer discovery; Fragment events, when a node wants to propagate a new fragment to other nodes; Block events, when a node wants to propagate a new block creation event","breadcrumbs":"Core Ledger » General Concepts » Network overview » Subscription mechanism","id":"22","title":"Subscription mechanism"},"220":{"body":"Client are different from the node, in the sense that they may not be reachable by other peers directly. However we might consider non reachable clients to keep an open connections to a node to received events. TBD ReceiveNext : () -> Event Another solution would be use use libp2p which also implements NAT Traversals and already has solutions for this.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Client communication","id":"220","title":"Node-to-Client communication"},"221":{"body":"This section describes the construction of the network topology between nodes participating in the protocol. It will describes the requirements necessary to propagate the most efficiently the Communication Messages to the nodes of the topology.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Peer-to-Peer network","id":"221","title":"Peer-to-Peer network"},"222":{"body":"Communication Messages : the message that are necessary to be sent through the network (node-to-node and node-to-client) as defined above; Topology : defines how the peers are linked to each other; Node or Peer : an instance running the protocol; Link : a connection between 2 peers in the topology;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Definitions","id":"222","title":"Definitions"},"223":{"body":"A node can join the network at any moment; A node can leave the network at any moment; Node will discover new nodes to connect to via gossiping: nodes will exchange information regarding other nodes; Nodes will relay information to their linked nodes (neighbors); A node can challenge another node utilising the VRF in order to authentify the remote node is a specific stake owner/gatherer.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Functionalities","id":"223","title":"Functionalities"},"224":{"body":"RingGossip : NodeProfileDetails * RING_GOSSIP_MAX_SIZE; VicinityGossip : NodeProfileDetails * VICINITY_GOSSIP_MAX_SIZE; CyclonGossip : NodeProfileDetails * CYCLON_GOSSIP_MAX_SIZE; A node profile contains: Node’s id; Node’s IP Address; Node’s topics (set of what the node is known to be interested into); Node’s connected IDs","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Messages","id":"224","title":"Messages"},"225":{"body":"The requirements to join and leave the network at any moment, to discover and change the links and to relay messages are all handled by PolderCast . Implementing PolderCast provides a good support to handle churn, fast relaying and quick stabilisation of the network. The paper proposes 3 modules: Rings, Vicinity and Cyclon . Our addition: The preferred nodes We propose to extend the number of modules with a 4th one. This module is static and entirely defined in the config file. This 4th module will provide the following features: Connect to specific dedicated nodes that we know we can trust (we may use a VRF challenge to validate they are known stakeholder – they participated to numerous block creations); This will add a static, known inter-node communications. Allowing users to build a one to one trusted topology; A direct application for this will be to build an inter-stake-pool communication layer; Static / configured list of trusted parties (automatically whitelisted for quarantine) Metrics measurement related to stability TBD Reports and Quarantine In order to facilitate the handling of unreachable nodes or of misbehaving ones we have a system of reports that handles the state of known peers. Following such reports, at the moment based only on connectivity status, peers may move into quarantine or other less restrictive impairements. In the current system, a peer can be in any of these 4 states: Available: the peer is known to the current node and can be picked up by poldercast layers for gossip and propagation of messages. This is the state in which new peers joining the topology via gossip end up. Trusted: the last handshake between the peer and this node was successfull. For these kind of nodes we are a little more forgiving with reports and failures. Quarantined: the peer has (possibly several) failed handshake attempts. We will not attempt to contact it again for some time even if we receive new gossip. Unknown: the peer is not known to the current node. Actually, due to limitations of the poldercast library, this may mean that there are some traces of the peer in the profiles maintained by the current node but it cannot be picked up by poldercast layers for gossip or propagation. For all purposes but last resort connection attempts (see next paragraph), these two cases are essentially the same. Since a diagram is often easier to understand than a bunch of sentences, these are the transitions between states in the current implementation, with details about avoiding network partition removed (see next paragraph). Quarantine Avoid network partitions An important property of the p2p network is resilience to outages. We must avoid creating partitions in the network as much as possible. For this reason, we send a manual (i.e. not part of poldercast protocol) optimistic gossip message to all nodes that were reported after the report expired. If this message fails to be delivered, no further action will be taken against that peer to avoid cycling it back and forth from quarantine indefinitely. If instead the message is delivered correctly, we successfully prevented a possible partition :). Another measure in place is a sort of a last resort attempt: if the node did not receive any incoming gossip for the last X minutes (tweakable in the config file), we try to contact again any node that is not quarantined and for which we have any trace left in the system (this is where nodes that were artificially forgotten by the system come into play). Part to look into Privacy. Possibly Dandelion tech","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Communications Design","id":"225","title":"Communications Design"},"226":{"body":"","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial models considered","id":"226","title":"Adversarial models considered"},"227":{"body":"We consider an adversary whose goal is to isolate from the network nodes with stake. The impact of such successful attack would prevent block creation. Such adversarial node would propose a block that may look like a fork of the blockchain. Ouroboros Genesis allows fork up to an undetermined number of blocks in the past. The targeted would then have to do a large amount of block synchronisation and validation. If the fork pretend to be in an epoch known to us, we can perform some cryptographic verifications (check the VRF); If the fork pretends to be in an epoch long past, we may perform a small, controlled verification of up to N blocks from the forking point to verify the validity of these blocks; Once the validity verified, we can then verify the locality aliveness of the fork and apply the consensus algorithm to decide if such a fork is worth considering. However, suck attack can be repeated ad nauseam by any adversarial that happened to have been elected once by the protocol to create blocks. Once elected by its stake, the node may turn adversarial, creates as many invalid blocks, and propose them to the attacked node indefinitely. How do we keep track of the rejected blocks ? How do we keep track of the blacklisted stakeholder key or pool that are known to have propose too many invalid block or attempted this attack ? Rejected block have a given block hash that is unlikely to collide with valid blocks, a node can keep a bloomfilter of hashes of known rejected block hash; or of known rejected VRF key; The limitation of maintaining a bloom filter is that we may need to keep an ever growing bloom filter. However, it is reasonable to assume that the consensus protocol will organise itself in a collection of stakepools that have the resources (and the incentive) to keep suck bloom filter.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial forks","id":"227","title":"Adversarial forks"},"228":{"body":"We consider an adversary whose goal is to disrupt or interrupt the p2p message propagation. The event propagation mechanism of the pub/sub part of the p2p network can be leverage to continuously send invalid or non desired transactions to the network. For example, in a blockchain network protocol the transactions are aimed to be sent quickly between nodes of the topology so they may be quickly added to the ledger. While it is true that one can create a random amount of valid transactions, it is also possible perform a certain amount of validation and policies to prevent the transaction message forwarding from flooding the network: The protocol already requires the nodes to validate the signatures and that the inputs are unspent; We can add a policy not to accept transaction that may imply a double spend, i.e. in our pool of pending transaction, we can check that there is no duplicate inputs. The p2p gossiping protocols is an active action where a node decides to contact another node to exchange gossip with. It is not possible to flood the network with the gossiping messages as they do not require instant propagation of the gossips.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Flooding attack","id":"228","title":"Flooding attack"},"229":{"body":"We consider an adversary whose goal is to deanonymize users by linking their transactions to their IP addresses. This model is analysed in Dandelion . PolderCast already allows us to provide some reasonable guarantees against this adversary model. Node do not share their links, they share a limited number of gossips based on what a node believe the recipient node might be interested in; While some links can be guessed (those of the Rings module for example), some are too arbitrary ( Vicinity or Cyclon ) to determined the original sender of a transaction;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Anonymity Against distributed adversaries","id":"229","title":"Anonymity Against distributed adversaries"},"23":{"body":"In order to facilitate the handling of unreachable nodes or of misbehaving ones we have built a node policy tooling. Currently, we collect connectivity statuses for each node. The policy can then be tuned over the collected data to apply some parameters when connecting to a given node, as well as banning nodes from our topology. For each node, the following data is collected: Connection statuses: The failed connection attempts and when it happened; Latency Last message used per topic item (last time a fragment has been received from that node, last time a block has been received from that node…) In the future, we may expand the polocy to include data collected at the blockchain level lile: Faults (e.g. trying to send an invalid block) Contributions in the network Their blockchain status (e.g. tips)","breadcrumbs":"Core Ledger » General Concepts » Network overview » Security and countermeasures","id":"23","title":"Security and countermeasures"},"230":{"body":"We consider an adversary that could intercept the communication between two nodes. Such adversary could: Escalate acquired knowledge to break the node privacy (e.g. user’s public keys); Disrupt the communication between the two nodes; Potentially we might use SSL/TLS with dynamic certificate generation. A node would introduce itself to the network with its certificate. The certificate is then associated to this node and would be propagated via gossiping to the network.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Man in the middle","id":"230","title":"Man in the middle"},"231":{"body":"Each participants in the protocol need: Key Evolving signature (KES) secret key Verifiable Random Function (VRF) secret key Apart from the common block deserialization and hashing verification, each block requires: 2 VRF verification 1 KES verification. Considering the perfect network, it allow to calculate how many sequential hops, a block can hope to reach at a maximum bound. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » In relation to Ouroboros Genesis","id":"231","title":"In relation to Ouroboros Genesis"},"232":{"body":"This section describes tools and libraries used to test catalyst-core components. Jormungandr test libraries includes projects: jormungandr-automation - sets of apis for automating all node calls and node sub-components (REST, GRPC, logging etc.), hersir - api & cli for bootstrapping entire network of nodes with some predefined configuration. Project takes care of proper settings for all nodes as well as block0, thor - testing api & cli for all wallet operations, mjolnir - load tool (api & cli) for all kind of jormungandr transactions, loki - api & cli for sending invalid/adversary load as well as boostraping adversary node.","breadcrumbs":"Core Ledger » testing » testing » testing","id":"232","title":"testing"},"233":{"body":"Incubator of all testing apis for the node and jcli:","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr-automation","id":"233","title":"jormungandr-automation"},"234":{"body":"In order to build jormungandr-automation in main project folder run: cd testing/jormungandr-automation\ncargo build","breadcrumbs":"Core Ledger » testing » jormungandr-automation » build","id":"234","title":"build"},"235":{"body":"Api that can be used to run jcli executable underneath and is capable to assert outcome of command. It can work with already installed jcli (using PATH variable) or custom path. For Example: let jcli: JCli = Default::default(); let private_key = jcli.key().generate(\"ed25519-extended\"); let public_key = jcli.key().convert_to_public_string(&private_key);","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jcli testing api","id":"235","title":"jcli testing api"},"236":{"body":"Collection of automation modules for node interaction and configuration: configuration - allows to configure node & blockchain settings, explorer - explorer configuration/bootstrap & interaction module, grpc - module for grpc internode connection library handling. capable of sending some RPC calls as well as bootstrap receiver instance, legacy - module for loosely typed configuration. This allow to bootstrap older version of node, for example to satisfy need on cross-version testing, rest - module for jormungandr REST api testing, starter - module for bootstrapping node, verifier - node state verifier logger - api for jormungandr log handling/assertion process - api for handling jormungandr process","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr testing api","id":"236","title":"jormungandr testing api"},"237":{"body":"Bunch of loosely coupled utility modules, mostly for additional configuration capabilities or benchmarking: benchmark - measurements framework for various purposes, for example bootstrap time or how many transactions were successfully handled by node, vit - additional helpers for voting capabilities, asserts - asserts extensions, tailored for node needs, block0 - block0 extensions, like easier access to blockchain setting or function to download block0, collector - input collector utils, configuration - test configuration helper (apps paths etc.), keys - create default keys, observer - simple observer framework, panic - panic error reporting in test code, process - process extensions, resource - resources manager, mostly for tls certificates used for testing, storage - node storage generators, time - time utils, mostly for waiting for particular block date, verify - substitute of asserts in case we don’t want to panic eagerly when assertion is failed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-automation » testing","id":"237","title":"testing"},"238":{"body":"Hersir is a cli & api project capable of bootstrapping local jormungandr network which can be exercised by various tools.","breadcrumbs":"Core Ledger » testing » Hersir » Hersir","id":"238","title":"Hersir"},"239":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Hersir » build & install","id":"239","title":"build & install"},"24":{"body":"The p2p policy provides some more fine control on how to handle nodes flagged as not behaving as expected (see the list of data collected). It currently works as a 4 levels: trusted, possible contact, quarantined, forgotten. Each gossip about a new node will create a new entry in the list of possible contact. Then the policy, based on the logged data associated to this node, may decide to put this node in quarantine for a certain amount of time. Trusted nodes are the ones to which we were able to connect successfully. A connectivity report against those nodes will make them transition to the possible contact level, while a successful connection attempt will promote them again to trusted. The changes from one level to another is best effort only. Applying the policy may be costly so the node applies the policy only on the node it is interested about (a gossip update or when reporting an issue against a node). This guarantees that the node does not spend too much time policing its database. And it also makes sure that only the nodes of interest are up to date. However it is possible for the node to choose, at a convenient time, to policy the whole p2p database. This is not enforced by the protocol. Disposition Description available Node is available for the p2p topology for view selection and gossips. quarantined Node is not available for the p2p topology for view selection or gossips. After a certain amount of time, if the node is still being gossiped about, it will be moved to available. forgotten A node forgotten is simply removed from the whole p2p database. However, if the node is still being gossiped about it will be added back as available and the process will start again. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Policy","id":"24","title":"Policy"},"240":{"body":"The simplest configuration is available by using command: hersir --config res\\example.yaml it results in small network with all data dumped to current folder","breadcrumbs":"Core Ledger » testing » Hersir » quick start","id":"240","title":"quick start"},"241":{"body":"Simple example: nodes: - spawn_params: alias: passive leadership_mode: passive persistence_mode: inmemory trusted_peers: - leader - spawn_params: alias: leader leadership_mode: leader persistence_mode: inmemory blockchain: discrimination: test consensus: bft nodes sections defines each network node. We can define alias, that is then used to express relations between the nodes. Also if we keep everything in memory or if node can mint blocks or not. blockchain section defines blockchain parameters, like what is the consensus and if we are using test or production addresses discrimination.","breadcrumbs":"Core Ledger » testing » Hersir » configuration","id":"241","title":"configuration"},"242":{"body":"nodes spawn_params alias: string (mandatory) - reference name of the node. Example: “alias”, bootstrap_from_peers: bool (optional) - should node bootstrap from trusted peers. By default it is auto-evaluated: If node doesn’t have any trusted peers it won’t bootstrap from peers, faketime: custom (optional) - inject fake time settings. For example: faketime: { /// Clock drift (1 = no drift, 2 = double speed) drift: 1, /// Offset from the real clock in seconds offset: 2, } gossip_interval: time (optional) - node gossip interval with the rest of the network. Format: number unit. For example: 10 s, jormungandr: path (optional) - path to jormungandr node executable, leadership_mode: enum (optional) - node leadership mode. Possible values: passive - node won’t be able to produce blocks, leader - node will be able to mint blocks, listen_address: string (optional) - override listen address for node. Example: /ip4/127.0.0.1/tcp/10005, log_level: enum (optional) - log level, Possible values: (info/warn/error/debug/trace) max_bootstrap_attempts: number (optional) - maximum number of bootstrap attempt before abandon, max_connections: number (optional) - max connection node will create with other nodes, max_inbound_connections: number (optional) - max inbound connection that node will accept, mempool: custom (optional) - mempool configuration. Example: mempool: pool_max_entries: 100000 log_max_entries: 100000 network_stuck_check: time (optional) - check interval which node use to verify blockchain advanced. Format: number unit. For example: 10 s, node_key_file: path (optional) - path to node network key, persistence_mode: enum (optional) - set persistence mode. Possible values: inmemory - everything is kept in node memory. If node restarts, all history is gone, persistence - node uses local storage to preserve current state, persistent_fragment_log: path (optional) - persistent fragment log serializes every fragment node receives via REST api, policy: custom (optional) - defines nodes quarantine configuration. Example: policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" preferred_layer: custom (optional) - defines preferences in gossiping. Example: layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 public_address: String (optional)- override public address for node. Example: /ip4/127.0.0.1/tcp/10005, skip_bootstrap: bool (optional) - skips node bootstrap step, topics_of_interest: custom (optional) - topics of interests describe how eager node will fetch blocks or transactions: topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool verbose: bool (optional) - enable verbose mode, which prints additional information, trusted_peers: List (optional) - list of trusted peers. Example: trusted_peers: - leader - leader_1 blockchain block0_date: date (optional) - block0 date, if not provided current date would be taken, block_content_max_size: number (optional) - maximum block content size in bytes, committees: list (optional) - list of wallet aliases which will be committees (capable of tallying the vote), consensus: enum (optional) - blockchain consensus, possible values: Bft,GenesisPraos, consensus_genesis_praos_active_slot_coeff: float (optional) - Determines minimum stake required to try becoming slot leader, must be in range (0,1], discrimination: enum (optional) - type of discrimination of the blockchain: production, if this blockchain is meant for production test, otherwise external_committees: list (optional) - list of committees to be included in block0, external_consensus_leader_ids: list (optional) - list of external leaders id (apart from already defined nodes), external_wallets: list (optional) - list of external wallets. Example: external_wallets: - alias: Alice address: ca1q47vz09320mx2qcs0gspwm47lsm8sh40af305x759vvhm7qyjyluulja80r value: 1000000000 tokens: {} kes_update_speed: number (optional) - the speed to update the KES Key in seconds, linear_fee: custom (optional) - fee calculations settings, slot_duration: number (optional) - The slot duration, in seconds, is the time between the creation of 2 blocks, slots_per_epoch: number (optional) - number of slots in each epoch, tx_max_expiry_epochs: number (optional) - transaction ttl (expressed in number of epochs). session jormungandr: path (optional) - override path to jormungandr. By default it’s taken from PATH variable, root: path (optional) - override path to local storage folder. By default all related data is dumped ino TEMP folder, generate_documentation: bool (optional) - generate documentation files into local storage folder, mode: enum (optional) - set hersir working mode. By default it’s “standard”, which just prints information about correct nodes bootstrap. Possible values: monitor - prints current nodes status as progress bar, standard - just prints information about correct nodes bootstrap, interactive - spawn helper cli, which allows to interact with nodes, log: enum (optional) - log level, Possible values: (info/warn/error/debug/trace), title: string (optional) - give local storage folder name instead of random one.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available parameters","id":"242","title":"full list of available parameters"},"243":{"body":"Full list of commands is available on hersir --help command. hersir 0.1.0 USAGE: hersir [FLAGS] --config FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose OPTIONS: -c, --config Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available commands","id":"243","title":"full list of available commands"},"244":{"body":"Integration test is a container project for all jormungandr & jcli tests. Tests are validating node correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » jormungandr-integration-tests","id":"244","title":"jormungandr-integration-tests"},"245":{"body":"Jormungandr tests architecture relies on test pyramid approach. Most of the effort is put into until and api level and small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Architecture of tests","id":"245","title":"Architecture of tests"},"246":{"body":"","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Quick start","id":"246","title":"Quick start"},"247":{"body":"In order to run test jormungandr & jcli need to be installed or prebuild.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Prerequisites","id":"247","title":"Prerequisites"},"248":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Start tests","id":"248","title":"Start tests"},"249":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Tests categories","id":"249","title":"Tests categories"},"25":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Node organization » Node organization","id":"25","title":"Node organization"},"250":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run all functional tests","id":"250","title":"How to run all functional tests"},"251":{"body":"cd testing/jormungandr-integration-tests\ncargo test jcli","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run jcli only functional tests","id":"251","title":"How to run jcli only functional tests"},"252":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node functional tests","id":"252","title":"How to run single node functional tests"},"253":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node performance tests","id":"253","title":"How to run single node performance tests"},"254":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node endurance tests","id":"254","title":"How to run single node endurance tests"},"255":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::network --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network functional tests","id":"255","title":"How to run network functional tests"},"256":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network performance tests","id":"256","title":"How to run network performance tests"},"257":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network endurance tests","id":"257","title":"How to run network endurance tests"},"258":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Frequency","id":"258","title":"Frequency"},"259":{"body":"Loki is an adversary node implementation and api which operates on jormungandr network.","breadcrumbs":"Core Ledger » testing » Loki » Loki","id":"259","title":"Loki"},"26":{"body":"The secure enclave is the component containing the secret cryptographic material, and offering safe and secret high level interfaces to the rest of the node.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Secure Enclave","id":"26","title":"Secure Enclave"},"260":{"body":"In order to build hersir in main project folder run: cd testing/loki\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Loki » Build & Install","id":"260","title":"Build & Install"},"261":{"body":"Loki can be used bootstrap using cli: loki --genesis-block block0.bin --listen-address 127.0.0.1:8080 -s secret.yaml where: genesis-block - Path to the genesis block (the block0) of the blockchain listen-address - Specifies the address the node will listen secret - Set the secret node config (in YAML format). Example: ---\nbft: signing_key: ed25519_sk1w2tyr7e2w26w5vxv65xf36kpvcsach8rcdmlmrhg3rjzeumjnzyqvdvwfa Then utilizing rest interface of loki node one can send some invalid GRPC messages to rest of the network: curl --location --request POST 'http://127.0.0.1:8080/invalid_fragment' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"address\": \"127.0.0.1:1000\", \"parent\": \"tip\"\n}' where: address - address of “victim” node, parent - Parent block. Possible values: tip - current tip of “victim” node, block0 - block0, {Hash} - arbitrary parent block which hash is provided in request","breadcrumbs":"Core Ledger » testing » Loki » Quick Start","id":"261","title":"Quick Start"},"262":{"body":"/invalid_hash - Sends block with invalid hash, /invalid_signature - Sends block with invalid by wrong leader signature, /nonexistent_leader - Sends block with non-existing leader, /wrong_leader - Sends block with signed with invalid leader,","breadcrumbs":"Core Ledger » testing » Loki » Other possible operations","id":"262","title":"Other possible operations"},"263":{"body":"Loki also provides API for performing adversary operations, like sending invalid fragments: use loki::{AdversaryFragmentSender, AdversaryFragmentSenderSetup}; let mut sender = ... let receiver = .. // node initialization let jormungandr = ... let adversary_sender = AdversaryFragmentSender::new( jormungandr.genesis_block_hash(), jormungandr.fees(), BlockDate::first().next_epoch().into(), AdversaryFragmentSenderSetup::no_verify(), ); adversary_sender .send_faulty_transactions_with_iteration_delay( 10, &mut sender, &receiver, &jormungandr, Duration::from_secs(5), ) .unwrap(); Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Loki » API","id":"263","title":"API"},"264":{"body":"Mjolnir is a load cli & api project which operates on jormungandr node.","breadcrumbs":"Core Ledger » testing » Mjolnir » Mjolnir","id":"264","title":"Mjolnir"},"265":{"body":"In order to build mjolnir in main project folder run: cd testing/mjolnir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Mjolnir » Build & Install","id":"265","title":"Build & Install"},"266":{"body":"","breadcrumbs":"Core Ledger » testing » Mjolnir » Quick Start","id":"266","title":"Quick Start"},"267":{"body":"Mjolnir can be used as a cli. It is capable of putting various load on jormungandr node. It has couple of different load types: explorer - Explorer load fragment - Fragment load passive - Passive Nodes bootstrap rest - Rest load Simplest load configuration is to use rest load with below parameters: Rest load USAGE: mjolnir.exe rest [FLAGS] [OPTIONS] --duration --endpoint FLAGS: -h, --help Prints help information -m, --measure Prints post load measurements -V, --version Prints version information OPTIONS: -c, --count Number of threads [default: 3] --delay Amount of delay [milliseconds] between sync attempts [default: 50] -d, --duration Amount of delay [seconds] between sync attempts -e, --endpoint Address in format: http://127.0.0.1:8002/api/ -b, --progress-bar-mode Show progress bar [default: Monitor]","breadcrumbs":"Core Ledger » testing » Mjolnir » CLI","id":"267","title":"CLI"},"268":{"body":"Mjolnir main purpose is to serve load api: use jortestkit::load::{self, ConfigurationBuilder as LoadConfigurationBuilder, Monitor};\nuse std::time::Duration; //node initialization let mut jormungandr = ... let rest_client = jormungandr.rest(); // create request generator for rest calls let request = mjolnir::generators::RestRequestGen::new(rest_client); // duration based load run (40 seconds) let config = LoadConfigurationBuilder::duration(Duration::from_secs(40)) // with 5 threads .thread_no(5) // with delay between each request 0.01 s .step_delay(Duration::from_millis(10)) // with monitor thread monitor status of load run each 0.1 s .monitor(Monitor::Progress(100)) // with status printer which prints out status of load run each 1 s .status_pace(Duration::from_secs(1_000)) .build(); // initialize load in sync manner // (duration of each request is calculated by time difference between receiving response and sending request ) let stats = load::start_sync(request, config, \"Jormungandr rest load test\"); // finally some way to assert expected correctness, like percentage of successful requests assert!((stats.calculate_passrate() as u32) > 95);","breadcrumbs":"Core Ledger » testing » Mjolnir » API","id":"268","title":"API"},"269":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Mjolnir » full list of available commands","id":"269","title":"full list of available commands"},"27":{"body":"The node’s network is 3 components: Intercommunication API (GRPC) Public client API (REST) Control client API (REST) More detailed information here","breadcrumbs":"Core Ledger » General Concepts » Node organization » Network","id":"27","title":"Network"},"270":{"body":"Thor is a wallet cli & wallet api project which operates on jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Core Ledger » testing » Thor » Thor","id":"270","title":"Thor"},"271":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Thor » Build & Install","id":"271","title":"Build & Install"},"272":{"body":"","breadcrumbs":"Core Ledger » testing » Thor » Quick Start","id":"272","title":"Quick Start"},"273":{"body":"Thor can be used as a wallet cli. It is capable of sending transactions or pull data from node. The simplest usage example is available by using commands: register new wallet based on secret key: thor wallets import --alias darek --password 1234 secret.file connect to node rest API: thor connect https://jormungandr.iohk.io/api use recently created wallet for rest of commands: thor wallets use darek sync with the node regarding wallet data: thor wallets refresh send transaction: thor send tx --ada 5 --address ca1q5srhkdfuxqdm6h57mj45acxcdr57cr5lhddzkrjqyl8mmw62v9qczh78cu -pin 1234","breadcrumbs":"Core Ledger » testing » Thor » CLI","id":"273","title":"CLI"},"274":{"body":"Thor also allows you to use it as Api to perform any wallet operations from the code: use thor::{Wallet, FragmentSender, FragmentSenderSetup, FragmentVerifier}; let receiver = thor::Wallet::default(); let mut sender = thor::Wallet::default(); // node bootstrap let jormungandr = ... let fragment_sender = FragmentSender::from_with_setup( jormungandr.block0_configuration(), FragmentSenderSetup::no_verify(), ); fragment_sender .send_transaction(&mut sender, &receiver, &jormungandr, 1.into()) .unwrap();","breadcrumbs":"Core Ledger » testing » Thor » API","id":"274","title":"API"},"275":{"body":"Thor api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.thor). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Core Ledger » testing » Thor » Configuration","id":"275","title":"Configuration"},"276":{"body":"Full list of commands is available on thor --help command. thor 0.1.0\nCommand line wallet for testing Jormungandr USAGE: thor FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occured confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) refresh Pulls wallet data from the node send Sends fragments to nodes status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Thor » full list of available commands","id":"276","title":"full list of available commands"},"277":{"body":"Glossary: blockchains : the current blockchain and possibly different known forks. clock : general time tracking to know the time in blockchain unit (epoch/slot) tip : the current fork that is considered the correct one, related to consensus algorithm.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Internal Design","id":"277","title":"Internal Design"},"278":{"body":"Each node runs several tasks. Task is a process with a clearly defined interface that abstracts a particular task. General tasks: Network task : handle new connections, and perform lowlevel queries. It does queries parsing and routing them to the other tasks: block, client or transaction tasks. Block task : handles blocks reception from other nodes and the leadership thread. The blocks can be external and internal. External block (…), and internal block (…). When the task receives an external block it validates the block. If validation succeeds then the task appends blocks to the blockchain and checks if the tip needs any changes. When the task receives an internal block it does the same actions except for block validation. And then broadcasts the change of the tip to the network thread. Leadership task : waits for each new slot, evaluates if this node is a slot leader. In case if it is, the task creates a new block (with a set of known transactions) referencing the latest known and agreed block in the blockchain. Then the task sends it to the block thread for processing. Client task : receives block header/body queries. This task is in charge of in accord [!!!] with the blockchains, reply to the client. Transaction task : receives new transactions from the network, validates transaction and handle duplicates. Also the broadcast to other nodes new (valid) transaction received. Internal Architecture","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Tasks","id":"278","title":"Tasks"},"279":{"body":"The blockchain module is responsible to maintaining the blockchain (i.e.) the blocks, the current working branches (we will come back to it in a bit), the different states associated to every blocks, the epoch’s data (the parameters, the stake active distribution and the leadership schedule). It is fairly easy to maintain the blocks of a blockchain. They all have the identifier of the parent block. Storing them is another story though and is not covered here. Blockchain Data structure block0 or blockx.y are blocks of the blockchain. They link to the parent block except for the block0 which may not have parents here (there is a special case where we could set a parent pointing to the block of a previously known state of the blockchain); legder0 or ledgerx.y are states of the blockchain at a given block; epoch x parameters are the blockchain parameters that are valid for all the epoch x; epoch N stake distribution are the stake distribution as extracted from epoch N; epoch x leadership is the leadership schedule for the epoch x. This may seem a bit overwhelming. Let’s follow the flow of block creations and validation on this blockchain:","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Maintaining the blockchain’s state","id":"279","title":"Maintaining the blockchain’s state"},"28":{"body":"This interface is a binary, efficient interface using the protobuf format and GRPC standard. The protobuf files of types and interfaces are available in the source code. The interface is responsible to communicate with other node in the network: block sending and receiving fragments (transaction, certificates) broadcast peer2peer gossip","breadcrumbs":"Core Ledger » General Concepts » Node organization » Intercommunication API (GRPC)","id":"28","title":"Intercommunication API (GRPC)"},"280":{"body":"Let’s start with first initializing the blockchain from the block0. Blockchain Data structure From block0 The first block , the block0, is the block that contains the initial data of the blockchain. From the block0 we can construct the first ledger : the ledger0. From the ledger0 we can extract two objects: epoch 1 parameters which will contains the fee setting to apply during the epoch 1; epoch 0 stake distribution. This is the stake distribution at the end of the epoch 0 (and before the following epoch starts); And now from the epoch 0 stake distribution we can determine the leadership schedules for the epoch 1 and the epoch 2.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » From the block 0","id":"280","title":"From the block 0"},"281":{"body":"The view from the point of view of a block k at an epoch N (block N.k) looks like the following: Blockchain Data structure From blockk It links to the parent block: block N.(k - 1). This is important because it allows us to retrieve the ledger state at the block N.(k - 1). In order to accept the block N.k in the blockchain we need to validate a couple of things: the block N.k is correctly referring to the block N.(k - 1): the block date is increasing; the block number is strictly monotonically increasing; the schedule is correct: the block has been created by the right stake pool at the right time; the block N.k is updating the parent’s ledger state (ledger N.(k - 1)) and is producing a valid new ledger: ledger N.k","breadcrumbs":"Core Ledger » Internal Design » Internal Design » for a block","id":"281","title":"for a block"},"282":{"body":"Epoch transition happen when we switch to an epoch to the following one. Blockchain Data structure Transition","breadcrumbs":"Core Ledger » Internal Design » Internal Design » epoch transition","id":"282","title":"epoch transition"},"283":{"body":"Originally the voting blockchain was designed to be manually started and required a full block 0 and a configuration file to be created and distributed to nodes before it could commence. This made automated deployment difficult and introduces necessary manual steps into the process of running the voting system. To resolve this, the voting system is modified to allow the blockchain and parts of the configuration to be automatically created based solely on the parameters of the next election.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Automatic deployment of the voting blockchain","id":"283","title":"Automatic deployment of the voting blockchain"},"284":{"body":"There are two sources of data required to start the blockchain. Block 0 and the config YAML file. To ease deployment, Block 0 will be created dynamically based on data held in our distributed object storage (which is currently a Postgresql Database.) As are certain parameters currently required for the configuration file. The blockchain would still need to retain the current method for starting, in addition to the new “auto” mode. In essence, automatic configuration entails: Minimizing manual config items to only those that unavoidably need to be defined. Generating configuration for other items where possible from known local state, and only having configuration items for these to override the defaults. Sharing data in a central repository of local configuration items that other nodes would require. Reading other data directly from their source of truth (Such as the schedule of the election, voting power snapshot data and proposals/vote plan information.)","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Overview","id":"284","title":"Overview"},"285":{"body":"The node is configured by a YAML file which contains the following data. In the code, every config parameter should be accompanied by detailed a detailed documentation comment. secret_file: - Optional Path (to what, used for what?) storage: - Optional Path (to what, used for what?) log: - Optional Logger settings. level: - Optional Logger level, can be \"Trace\", \"Debug\", \"Info\". \"Warn\" and \"Error\". Should default to \"Info\" if not set. format: - Format of the logs, can be \"plain\" and \"json\". Should default to \"json\" if not set. output: - Optional destination of the log output. Options need to be fully documented . Should default to stdout if not defined. trace_collector_endpoint: - Optional Options need to be fully documented . Should default to None (ie, no external logging) if not defined. mempool: Optional configuration of the mempool. Should default as specified here. pool_max_entries: - Optional - maximum number of entries in the mempool. Should default to 1,000,000 if not set. log_max_entries: - Optional - maximum number of entries in the fragment logs. Should default to ???? if not set. persistent_log: - Optional - path to the persistent log of all incoming fragments. A decision needs to be made if persistent logging is normally desired. If it is, it should default to a location in /var. If not, it should default to None and be disabled. leadership: - Optional - the number of entries allowed in the leadership logs. logs_capacity: - Optional - Should default to ???? if not set. rest: - Optional - Enables REST API. listen: - Optional - Address to listen to rest api requests on. Should default to “0.0.0.0:12080”. This default is open to suggestions tls: - Optional - Define inbuilt tls support for the listening socket. If not specified, TLS is disabled. The default is TLS Disabled. cert_file: - Path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: - Path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: - Optional - Defines CORS settings. Default should be as shown in the individual entries. allowed_origins - Origin domains we accept connections from. Defaults to “*”. max_ages_secs - How long in seconds to cache CORS responses. Defaults to 60. allowed_headers - A list of allowed headers in the preflight check. If the provided list is empty, all preflight requests with a request header will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. allowed_methods - A list of allowed methods in the preflight check. If the provided list is empty, all preflight requests will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. STILL TODO * `jrpc` - Optional. No idea what this does yet??? TODO: Document it and defaults. * `p2p` - Peer to Peer config. #[serde(default)] pub p2p: P2pConfig, #[serde(default)] pub http_fetch_block0_service: Vec, #[cfg(feature = \"prometheus-metrics\")] pub prometheus: Option, /// the time interval with no blockchain updates after which alerts are thrown #[serde(default)] pub no_blockchain_updates_warning_interval: Option, #[serde(default)] pub bootstrap_from_trusted_peers: bool, #[serde(default)] pub skip_bootstrap: bool, pub block_hard_deadline: Option, Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Configuration","id":"285","title":"Configuration"},"286":{"body":"sequenceDiagram actor U as User participant B as Cardano Block Chain participant Br as Cardano-Catalyst Bridge participant C as Catalyst Backend U->>B: Registeration Txn Note right of U: Type/Public Key/Reward Address Note over B: Block Minted B->>Br: Reads Chain Tip, detects Registration Br->>C: Records Latest Registration U->>C: Requests Priviliged Operation Note over C: Generates Random Challenge C->>U: Challenge Sent Note over U: Signs Challenge with Public Key U->>C: Challenge Response Note right of U: Public Key/Challenge Signature Note over C: Validates Response alt Public Key Registered & Signature Valid C->>U: Authorized Note left of C: Authorized
Session Established loop Authorized U->>C: Privileged Operation C->>U: Priviliged Response end else Unauthorized C->>U: Unauthorized end Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Permissionless Auth » Permissionless Auth","id":"286","title":"Permissionless Auth"},"287":{"body":"Welcome to the Catalyst testing User Guide. Vit testing is a family of projects, with the aim to support all quality assurance activities in Catalyst. One can find here: catalyst backend deployment tool, catalyst backend mock, integration tests, registration service and registration verify service, snapshot service, snapshot wormhole, custom proxy for catalyst backend, cli voting app implementation, load driver imitating voting app users.","breadcrumbs":"Catalyst testing User Guide » Catalyst testing User Guide » Catalyst testing User Guide","id":"287","title":"Catalyst testing User Guide"},"288":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"288","title":"Iapyx"},"289":{"body":"Iapyx is a wallet cli & wallet api project which operates on catalyst-jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"289","title":"Iapyx"},"29":{"body":"This interface is for simple queries for clients like: Wallet Client & Middleware Analytics & Debugging tools Explorer it’s recommended for this interface to not be opened to the public. TODO: Add a high level overview of what it does","breadcrumbs":"Core Ledger » General Concepts » Node organization » Public API REST","id":"29","title":"Public API REST"},"290":{"body":"In order to build iapyx in main project folder run: cd iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Build & Install","id":"290","title":"Build & Install"},"291":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Quick Start","id":"291","title":"Quick Start"},"292":{"body":"Iapyx can be used as a wallet cli. It is capable of sending votes or pull data from node. The simplest usage example is available by using commands: register new wallet based on qr code: iapyx wallets import qr qr_file.png --pin 1234 connect to node rest API: iapyx connect https://catalyst-backend.io/api use recently created wallet for rest of commands: iapyx wallets use darek sync with the node and get wallet data: iapyx wallets refresh send vote: iapyx vote single --choice yes --pin --id {proposal_id}","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » CLI","id":"292","title":"CLI"},"293":{"body":"Iapyx can be used as api in order to perform voting operations from the code: let wallet_proxy = spawn_network(...); let secret_file_path = Path::new(\"wallet_alice\"); let mut alice = iapyx::ControllerBuilder::default() .with_backend_from_client(wallet_proxy.client())? .with_wallet_from_secret_file(secret_file_path.as_ref())? .build() let proposals = alice.proposals().unwrap(); let votes_data = proposals .iter() .take(batch_size) .map(|proposal| (proposal, Choice::new(0))) .collect(); let fragment_ids = alice .votes_batch(votes_data) .unwrap() .iter() .map(|item| item.to_string()) .collect();","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » API","id":"293","title":"API"},"294":{"body":"Iapyx api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.iapyx). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Configuration","id":"294","title":"Configuration"},"295":{"body":"Full list of commands is available on iapyx --help command. iapyx 0.0.1\nCommand line wallet for testing Catalyst USAGE: iapyx.exe FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occurred confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set funds Prints information about voting funds help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) proposals Prints proposals available to vote on refresh Pulls wallet data from the catalyst backend status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses vote Sends votes to backend votes Prints history of votes wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » full list of available commands","id":"295","title":"full list of available commands"},"296":{"body":"Iapyx-load is a load cli & api project which operates on catalyst backend.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Iapyx Load","id":"296","title":"Iapyx Load"},"297":{"body":"In order to build iapyx-load in main project folder run: cd testing/iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Build & Install","id":"297","title":"Build & Install"},"298":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Quick Start","id":"298","title":"Quick Start"},"299":{"body":"Iapyx-load can be used as a cli. It is capable of putting various load on catalyst backend. Available load types: node-only - Load which targets blockchain calls only static-only - Load which targets static data only simulation - Load with simulate real user case (both blockchain and static data in some relation) Also node-only load provides two load characteristic: bursts - Bursts mode. Sends votes in batches and then wait x seconds const - Constant load. Sends votes with x votes per second speed And two scenario types: duration - Duration based load. Defines how much time load should run count - Requests count based load. Defines how many requests load should sent in total Simplest load configuration is to use node-only load with below parameters: iapyx-load node-only const count --help USAGE: iapyx-load.exe node-only const count [FLAGS] [OPTIONS] --requests-per-thread FLAGS: --debug Print additional information --help Prints help information --read-from-filename Read pin from filename of each qr code --reuse-accounts-early Update all accounts state before sending any vote --reuse-accounts-lazy Update account state just before sending vote -h, --https Use https for sending fragments -V, --version Prints version information OPTIONS: -a, --address
Address in format: 127.0.0.1:8000 [default: 127.0.0.1:8000] -n, --requests-per-thread How many requests per thread should be sent -c, --criterion Pass criteria -d, --delay Amount of delay [miliseconds] between requests [default: 10000] --global-pin Global pin for all qr codes [default: 1234] -b, --progress-bar-mode Show progress. Available are (Monitor,Standard,None) [default: Monitor] -q, --qr-codes-folder Qr codes source folder -s, --secrets-folder Secrets source folder --status-pace How frequent (in seconds) to print status [default: 1] -t, --threads Prints nodes related data, like stats,fragments etc [default: 3]","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » CLI","id":"299","title":"CLI"},"3":{"body":"Welcome to the Jörmungandr User Guide. Jörmungandr is a node implementation, written in rust, with the initial aim to support the Ouroboros type of consensus protocol. A node is a participant of a blockchain network, continuously making, sending, receiving, and validating blocks. Each node is responsible to make sure that all the rules of the protocol are followed.","breadcrumbs":"Core Ledger » Core Ledger » Core Ledger","id":"3","title":"Core Ledger"},"30":{"body":"This interface is not finished, but is a restricted interface with ACL, to be able to do maintenance tasks on the process: Shutdown Load/Retire cryptographic material TODO: Detail the ACL/Security measure Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Control API REST","id":"30","title":"Control API REST"},"300":{"body":"Iapyx load main purpose is to serve as load api: use iapyx::{NodeLoad, NodeLoadConfig};\nuse jortestkit::{ load::{ConfigurationBuilder, Monitor}, measurement::Status,\n}; ... let no_of_threads = 10; let no_of_wallets = 40_000; let mut qr_codes_folder = Path::new(\"qr-codes\"); let config = ConfigurationBuilder::duration(parameters.calculate_vote_duration()) .thread_no(threads_no) .step_delay(Duration::from_millis(delay)) .fetch_limit(250) .monitor(Monitor::Progress(100)) .shutdown_grace_period(Duration::from_secs(60)) .build(); let load_config = NodeLoadConfig { batch_size, use_v1: false, config, criterion: Some(100), address: \"127.0.0.1:8080\".to_string(), qr_codes_folder: Some(qr_codes_folder), secrets_folder: None, global_pin: \"\".to_string(), reuse_accounts_lazy: false, reuse_accounts_early: false, read_pin_from_filename: true, use_https: false, debug: false, }; let iapyx_load = NodeLoad::new(load_config); if let Some(benchmark) = iapyx_load.start().unwrap() { assert!(benchmark.status() == Status::Green, \"too low efficiency\"); }","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » API","id":"300","title":"API"},"301":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » full list of available commands","id":"301","title":"full list of available commands"},"302":{"body":"Integration test is a container project for all catalyst e2e and integration tests. Tests are validating network correctness, stability. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » integration-tests","id":"302","title":"integration-tests"},"303":{"body":"Integration tests architecture relies on test pyramid approach. Where most of the effort is put into component and integration level and finally small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Architecture of tests","id":"303","title":"Architecture of tests"},"304":{"body":"","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Quick start","id":"304","title":"Quick start"},"305":{"body":"In order to run test integration tests below components need to be installed or prebuild: [vit-servicing-station-server|https://github.com/input-output-hk/vit-servicing-station/tree/master/vit-servicing-station-server] [jormungandr|https://github.com/input-output-hk/jormungandr/tree/master/jormungandr] [valgrind|https://github.com/input-output-hk/vit-testing/tree/master/valgrdin]","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Prerequisites","id":"305","title":"Prerequisites"},"306":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Start tests","id":"306","title":"Start tests"},"307":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Tests categories","id":"307","title":"Tests categories"},"308":{"body":"cd integration-tests\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run all functional tests","id":"308","title":"How to run all functional tests"},"309":{"body":"cd integration-tests\ncargo test --features testnet-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run testnet functional tests","id":"309","title":"How to run testnet functional tests"},"31":{"body":"In a proof of stake, participants are issued a stake equivalent to the amount of coins they own. The stake is then used to allow participation in the protocol, simply explained as: The more stake one has, the more likely one will participate in the good health of the network. When using the BFT consensus, the stake doesn’t influence how the system runs, but stake can still be manipulated for a later transition of the chain to another consensus mode.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake","id":"31","title":"Stake"},"310":{"body":"cd integration-tests\ncargo test non_functional::load --features load-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run load tests","id":"310","title":"How to run load tests"},"311":{"body":"cd testing/jormungandr-integration-tests\ncargo test non_functional::soak --features soak-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run network endurance tests","id":"311","title":"How to run network endurance tests"},"312":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Frequency","id":"312","title":"Frequency"},"313":{"body":"Registration service is REST service purely for test purposes which is capable to interact with: voter registration cli cardano cli vit-kedqr","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"313","title":"Registration service"},"314":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"314","title":"build"},"315":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"315","title":"quick start"},"316":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"316","title":"clients"},"317":{"body":"Registration CLI is cli utility tool which help to interact with registration service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"317","title":"cli"},"318":{"body":"Example: use registration_service::{ client::rest::RegistrationRestClient, context::State, request::Request, }; ... let payment_skey = Path::new(\"payment.skey\"); let payment_skey = Path::new(\"payment.vkey\"); let payment_skey = Path::new(\"stake.skey\"); let payment_skey = Path::new(\"stake.vkey\"); let payment_skey = Path::new(\"vote.skey\"); let registration_client = RegistrationRestClient::new_with_token(registration_token, registration_address); let registration_request = Request { payment_skey, payment_vkey, stake_skey, stake_vkey, vote_skey, }; let registration_job_id = registration_client.job_new(registration_request).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status); let qr_code_path = temp_dir.child(\"qr_code\"); std::fs::create_dir_all(qr_code_path.path()).unwrap(); let qr_code = registration_client .download_qr(registration_job_id.clone(), qr_code_path.path()) .unwrap(); let voting_key_sk = registration_client .get_catalyst_sk(registration_job_id) .unwrap(); NOTE: see cardano cli guide . This details information how to create payment and stake files.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"318","title":"api"},"319":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Registration CLI","id":"319","title":"Registration CLI"},"32":{"body":"Account are represented by 1 type of address and are just composed of a public key. The account accumulate moneys and its stake power is directly represented by the amount it contains For example: A - Account with 30$ => Account A has stake of 30 B - Account with 0$ => Account B has no stake The account might have a bigger stake than what it actually contains, since it could also have associated UTXOs, and this case is covered in the next section.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the Account Model","id":"32","title":"Stake in the Account Model"},"320":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Build & Install","id":"320","title":"Build & Install"},"321":{"body":"The simplest usage example is available by using commands: register new job: registration-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\\n--stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS} NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This detail information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Quick Start","id":"321","title":"Quick Start"},"322":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » full list of available commands","id":"322","title":"full list of available commands"},"323":{"body":"This section describe configuration file which can be passed as argument for registration service: port: port on which registration-service will be exposed, jcli: path to jcli executable, result-dir: path to folder which artifacts will be dumped (qr-code etc.), cardano-cli: path to jcli executable, voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"jcli\": \"jcli\", \"result-dir\": \"/persist\", \"cardano-cli\": \"./cardano-cli\", \"voter-registration\": \"./voter-registration\", \"vit-kedqr\": \"./vit-kedqr\", \"network\": \"mainnet\", \"token\": \"...\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"323","title":"Configuration"},"324":{"body":"Registration service is REST service purely for test purposes. It is capable to interact with voter registration cli , cardano cli and vit-kedqr .","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"324","title":"Registration service"},"325":{"body":"In order to build registration-verify-service in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"325","title":"build"},"326":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"326","title":"quick start"},"327":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"327","title":"clients"},"328":{"body":"Registration CLI is cli utility tool which help to interact with registration verify service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"328","title":"cli"},"329":{"body":"Example: use registration_verify_service::client::rest::RegistrationVerifyRestClient; ... let registration_verify_client = RegistrationVerifyRestClient::new_with_token(registration_token, registration_address); let mut form = Form::new() .text(\"pin\", \"1234\") .text(\"funds\",\"500\") .text(\"threshold\", \"500\") .file(\"qr\", PathBuf::new(\"my_q.png\")?; let registration_job_id = registration_verify_client.job_new(form).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status);","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"329","title":"api"},"33":{"body":"UTXO are represented by two kind of addresses: single address: those type of address have no stake associated group address: those types of address have an account associated which receive the stake power of the UTXOs value For example with the following utxos: UTXO1 60$ (single address) => has stake of 0 UTXO2 50$ (group address A) \\ ->- A - Account with 10$ => Account A has stake of 100 UTXO3 40$ (group address A) / UTXO4 20$ (group address B) -->- B - Account with 5$ => Account B has stake of 25","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the UTXO Model","id":"33","title":"Stake in the UTXO Model"},"330":{"body":"Registration Verify CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Registration Verify CLI","id":"330","title":"Registration Verify CLI"},"331":{"body":"In order to build registration verify project in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Build & Install","id":"331","title":"Build & Install"},"332":{"body":"The simplest usage example is available by using commands: register new job: registration-verify-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\ --stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS}` NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This details information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Quick Start","id":"332","title":"Quick Start"},"333":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » full list of available commands","id":"333","title":"full list of available commands"},"334":{"body":"This section describe configuration file which can be passed as argument for registration verify service: port: port on which registration-verify-service will be exposed, jcli: path to jcli executable, snapshot-token: token required by snapshot-service , snapshot-address: address of snapshot-service , client-token: access token for client endpoints (verifying voting power etc.), admin-token: access token for admin endpoints (updating snapshot etc.),, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, initial-snapshot-job-id: initial job id from snapshot service that will be used when starting service Example: \"port\": 8080, \"jcli\": \"jcli\", \"snapshot-token\": \"3568b599a65557b2a2e\", \"snapshot-address\": \"https://snapshot.address:8080\", \"client-token\": \"5e19639accf2d76bae\", \"admin-token\": \"605a7c515ec781fd39\", \"network\": \"mainnet\", \"initial-snapshot-job-id\": \"3b49a0ae-5536-454b-8f47-780d9e7da6a0\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"334","title":"Configuration"},"335":{"body":"Service which operates on top of voting tools . It is a interface improvement which expose voting tools as a REST service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Snapshot trigger service","id":"335","title":"Snapshot trigger service"},"336":{"body":"In order to build snapshot-trigger-service in main project folder run: cd snapshot-trigger-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » build","id":"336","title":"build"},"337":{"body":"The simplest configuration is available by using command: snapshot-trigger-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » quick start","id":"337","title":"quick start"},"338":{"body":"In order to start new job one need to send POST request like below: curl --location --request POST 'https://snapshot.io/api/job/new' \\\n--header 'API-Token: ...' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"threshold\": 2000000, // IN Lovelace \"slot-no\": 31842935\n}' Response will contains job status: b0b7b774-7263-4dce-a97d-c167169c8f27 Then query for job status: curl --location --request GET 'https://snapshot.io/api/job/status/b0b7b774-7263-4dce-a97d-c167169c8f27' \\\n--header 'API-Token: ...' and finally fetch snapshot: curl --location --request GET 'https://snapshot.io/api/job/files/get/b0b7b774-7263-4dce-a97d-c167169c8f27/snapshot.json' \\\n--header 'API-Token: ...' which has form: { \"initial\": [ { \"fund\": [ { \"address\": \"ca1q5yr504t56ruuwrp5zxpu469t9slk0uhkefc7admk7wqrs24q6nxwyhwjcf\", \"value\": 14463 }, { \"address\": \"ca1q5ynl2yqez8lmuaf3snvgcw885c9hxxq6uexeevd4al8pct7vx69sljvzxe\", \"value\": 9991 },\n....","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Usage","id":"338","title":"Usage"},"339":{"body":"","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » clients","id":"339","title":"clients"},"34":{"body":"Stake pool are the trusted block creators in the genesis-praos system. A pool is declared on the network explicitly by its owners and contains, metadata and cryptographic material. Stake pool has no stake power on their own, but participants in the network delegate their stake to a pool for running the operation.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake pool","id":"34","title":"Stake pool"},"340":{"body":"Snapshot CLI is cli utility tool which help to interact with snapshot trigger service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » cli","id":"340","title":"cli"},"341":{"body":"Example: use snapshot_trigger_service::{ client::rest::SnapshotRestClient, config::JobParameters, State, }; let job_param = JobParameters { slot_no: Some(1234567), tag: Some(\"fund1\".to_string()), }; let snapshot_token= \"...\"; let snapshot_address = \"...\"; let snapshot_client = SnapshotRestClient::new_with_token(snapshot_token.into(), snapshot_address.into()); let snapshot_job_id = snapshot_client.job_new(job_params).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); let snapshot_jobs_status = snapshot_client.wait_for_job_finish(snapshot_job_id.clone(), wait)?; let snapshot = snapshot_client.get_snapshot(snapshot_job_id)?;","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » api","id":"341","title":"api"},"342":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Registration CLI","id":"342","title":"Registration CLI"},"343":{"body":"In order to build registration-service in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Build & Install","id":"343","title":"Build & Install"},"344":{"body":"The simplest usage example is available by using commands: register new job: snapshot-cli --endpoint https://snapshot.io job new --tag daily NOTE: response of the above call should return job-id which should be used in next call like below: b0b7b774-7263-4dce-a97d-c167169c8f27 check job id: snapshot-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Quick Start","id":"344","title":"Quick Start"},"345":{"body":"Full list of commands is available on snapshot-cli --help command. snapshot-trigger-service 0.1.0 USAGE: snapshot-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint snapshot endpoint [env: SNAPSHOT_ENDPOINT=] -t, --token access token, which is necessary to perform client operations [env: SNAPSHOT_TOKEN=] SUBCOMMANDS: files retrieve files from snapshot (snapshot outcome etc.) health check if snapshot service is up help Prints this message or the help of the given subcommand(s) job job related commands Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » full list of available commands","id":"345","title":"full list of available commands"},"346":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, result-dir: path to folder which artifacts will be dumped (qr-code etc.), voting-tools: voting tools internal parameters section, bin: “voting-tools”, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, db: dbsync name, db-user: dbsync user, db-host: dbsync host, scale: voting power multiplier. If 1 then Lovelace is used voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"result-dir\": \"/persist/snapshot\", \"voting-tools\": { \"bin\": \"voting-tools\", \"network\": \"mainnet\", \"db\": \"dbsync\", \"db-user\": \"dbsync-admin\", \"db-host\": \"/alloc\", \"scale\": 1000000 }, \"token\": \"3568b599a65557b2a2e\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Configuration » Configuration","id":"346","title":"Configuration"},"347":{"body":"Snapshot wormhole is a specialized Rest client API project. It has a builtin scheduler for transfering snapshot result file from snapshot-trigger-service to vit-servicing-station service.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » snapshot wormhole","id":"347","title":"snapshot wormhole"},"348":{"body":"In main project folder run: cd vit-testing/snapshot-wormhole\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » build","id":"348","title":"build"},"349":{"body":"","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run","id":"349","title":"run"},"35":{"body":"Stake can and need to be delegated to stake pool in the system. They can change over time with a publication of a new delegation certificate. Delegation certificate are a simple declaration statement in the form of: Account 'A' delegate to Stake Pool 'Z' Effectively it assigns the stake in the account and its associated UTXO stake to the pool it delegates to until another delegation certificate is made. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake Delegation","id":"35","title":"Stake Delegation"},"350":{"body":"The simplest run configuration is available by using command: snapshot-wormhole --config snapshot-wormhole.config one-shot which will perform a single job of snapshot-trigger-service -> vit-servicing-station See config for configuration file details.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » quick start","id":"350","title":"quick start"},"351":{"body":"Two modes are available: one-shot - ends program after single job is done, schedule - run job continuously based on cron string. one-shot This mode can be helpful for debugging or testing purposes to verify if our configuration is correct and services are available. schedule Start scheduler based on input cron string. We are using custom cron string which allows to program scheduler based on seconds. The scheduling format is as follows: | sec | min | hour | day of month | month | day of week | year |\n| * | * | * | * | * | * | * | For example, to schedule each run per 15 minutes starting from now: snapshot-wormhole --config wormhole-config.json schedule --cron \"* 4/60 * * * *\" --eagerly full list of available commands Full list of commands is available on snapshot-wormhole --help command","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run modes","id":"351","title":"run modes"},"352":{"body":"This section describe configuration file which can be passed as argument when starting snapshot-wormhole:","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » Configuration","id":"352","title":"Configuration"},"353":{"body":"This section describe snapshot trigger service connection: address: snapshot trigger REST api address, token: optional access token,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » snapshot service","id":"353","title":"snapshot service"},"354":{"body":"This section describe servicing station service connection: address: servicing station service REST api address,,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » servicing station service","id":"354","title":"servicing station service"},"355":{"body":"This section defines snapshot import parameters when applying snapshot to vit servicing station min_stake_threshold: minimum stake needed to participate in voting. Expressed in ada, voting_power_cap: maximum voting power before capping in order to satisfy fairness in voting. Expressed as a fraction number, direct_voters_group: group name for direct voters (determines part of REST path when accessing particular group with GET request), representatives_group: group name for representatives (determines part of REST path when accessing particular group with GET request) Example: { \"snapshot_service\": { \"address\": \"http://127.0.0.1:9090\", \"token\": \"RBj0weJerr87A\" }, \"servicing_station\": { \"address\": \"http://127.0.0.1:8080\" }, \"parameters\": { \"min_stake_threshold\": 500, \"voting_power_cap\": { \"Rational\": [\"Plus\",[1,2]] }, \"direct_voters_group\": \"direct\", \"representatives_group\": \"rep\" }\n}\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » parameters","id":"355","title":"parameters"},"356":{"body":"Valgrind is a Rest API project which is simplified proxy solution for catalyst backend.","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » valgrind","id":"356","title":"valgrind"},"357":{"body":"In main project folder run: cd valgrind\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » build","id":"357","title":"build"},"358":{"body":"The simplest configuration is available by using command: valgrind --block0_path block0.bin By default valgrind will be exposed at 127.0.0.1:8000","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » quick start","id":"358","title":"quick start"},"359":{"body":"Valgrind project provides also API for interacting with proxy server. Usage example: use valgrind::client::{ValgrindClient,ValgrindSettings}; let settings = RestSettings { enable_debug: false, use_https: false, certificate: None, cors: None, } let address = \"0.0.0.0:8080\".to_string(); let client = ValgrindClient::new(address, settings) let fragment_logs = client.fragment_logs()?;","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » client","id":"359","title":"client"},"36":{"body":"The rust node comes with tools and help in order to quickly start a node and connect to the blockchain. It is compatible with most platforms and it is pre-packaged for some of them. Here we will see how to install jormungandr and its helper jcli and how to connect quickly to a given blockchain. There are three posible ways you can start jormungandr.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Quickstart","id":"36","title":"Quickstart"},"360":{"body":"This section describe configuration file which can be passed as argument when starting valgrind: address: address on which valgrind will be exposed. By default: 127.0.0.1:8000, vit-address: vit servicing station address. By default: 127.0.0.1:3030, node-address: node address. By default: 127.0.0.1:8080, block0-path: path to block0 executable, cert: path to certificate (for enabling https). Optional, key: path certificate key (for enabling https). Optional, Example: \"address\": \"127.0.0.1:8000\", \"vit-address\": \"127.0.0.1:3030\", \"node-address\": \"127.0.0.1:8080\", \"block0-path\": \"./block0.bin\", \"cert\": \"certificate.cert\", \"key\": \"certificate.key\",\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » valgrind » Configuration » Configuration","id":"360","title":"Configuration"},"361":{"body":"Vitup is a cli project which is capable to bootstrap catalyst backend which can be exercised by various tools. Initial purpose is to provide simple localhost backend for catalyst voting app.","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » vitup","id":"361","title":"vitup"},"362":{"body":"before building vitup all dependencies need to be installed. valgrind jormungandr vit-servicing-station then in order to build vitup in main project folder run: cargo build and install: cargo install --path vitup","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » build","id":"362","title":"build"},"363":{"body":"The simplest configuration is available by using command: vitup start quick default endpoint will be exposed at 0.0.0.0:80 all data dumped to .\\catalyst","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » quick start","id":"363","title":"quick start"},"364":{"body":"Configuration file example is available under src/vit-testing/vitup/example/mock/config.yaml This section describe configuration file which can be passed as argument for vitup start mock command: pub struct Configuration { pub ideascale: bool, pub protocol: valgrind::Protocol,","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » Configuration","id":"364","title":"Configuration"},"365":{"body":"pub local: bool, } port: port on which registration-service will be exposed, token: token limiting access to environment. Must be provided in header API-Token for each request working-dir: path to folder which artifacts will be dumped (qr-code etc.), protocol: optional parameter if service shoudl be exposed through https. Then two sub-parameters need to be defined key_path and cert_path like in an example below: \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" } NOTE: certificates in resources folder are self-signed Example: { \"port\": 8080, \"working-dir\": \"./mock\", \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » [serde(default)]","id":"365","title":"[serde(default)]"},"366":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation » Data Generation","id":"366","title":"Data Generation"},"367":{"body":"This section describe configuration file. It is passed as argument when starting vitup. It can also, in some cases, send to already running environments in order to restart them with new settings.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"367","title":"Configuration"},"368":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Initials","id":"368","title":"Initials"},"369":{"body":"Allows to provide initial voters and representatives which whose will be available in initial snapshot. see snapshot data creation guide for more details","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"369","title":"snapshot"},"37":{"body":"As described here . The passive Node is the most common type of Node on the network. It can be used to download the blocks and broadcast transactions to peers. However, it doesn’t have cryptographic materials or any mean to create blocks. This type of nodes are mostly used for wallets, explorers or relays.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a passive node in an existing network","id":"37","title":"As a passive node in an existing network"},"370":{"body":"Allows to provide initial addresses/voters which addresses would be put in block0. Supported syntax: above threshold Amount of wallets which receive more than value defined in static_data.voting_power parameter Example: { \"above_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses below threshold Amount of wallets which receive less than value defined in static_data.voting_power parameter Example: { \"below_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses around level Amount of wallets which have funds around defined level Example: { \"count\":30, \"level\":1000, \"pin\":\"1234\"\n} zero funds Amount of wallets which won’t have any funds in block0 Example: { \"zero_funds\":30, \"pin\":\"1234\"\n} named wallet Wallet with custom pin and arbitrary funds amount, Example: { \"name\":\"darek\", \"funds\":8000, \"pin\":\"1111\" }, external wallet Wallet with address and pin. For users who already generated address outside vitup. Example: { \"address\":\"ca1qknqa67aflzndy0rvkmxhd3gvccme5637qch53kfh0slzkfgv5nwyq4hxu4\", \"funds\":8000 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » block0","id":"370","title":"block0"},"371":{"body":"Allows to provide initial addresses/voters which addresses would be put in initial snapshot. Supported syntax: random Some number of random wallets which receive specified amount of voting power Example: { \"count\": 2, \"level\": 5000 }, external A single entry with specified voting key and voting power Example: { \"key\":\"3877098d14e80c62c071a1d82e3df0eb9a6cd339a5f66e9ec338274fdcd9d0f4\", \"funds\":300 } named A single entry with specified alias from block0 and optional voting power. If voting power is not defined it would be taken from block0 section. If vitup cannot find alias it will produce an error Example: { \"name\": \"darek\", \"funds\": 100 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"371","title":"snapshot"},"372":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote plan","id":"372","title":"vote plan"},"373":{"body":"Below parameters describe how long vote would be active, for how long users can vote and when tally period would begin. In cardano time is divided into epochs which consists of slots. There are 2 parameters that defines how long epoch should last, slot_duration and slots_per_epoch with equation: epoch_duration = slot_duration * slots_per_epoch. For example, for given: slot_duration = 2\nslots_per_epoch = 10 then epoch will lasts 20 seconds. vote_start, vote_tally, tally_end - describe 2 vote phases: from vote_start to vote_tally : casting vote period, where we gather votes. from vote_tally to tally_end: tallying vote period, where we gather voting results. Sll above parameters are expressed in epochs. Be aware that slot_duration and slots_per_epoch have influence on time voting phase would start. For example: start vote in 5 minutes, allow users to case vote for 20 minutes give 1 hour for tally operation our setup would be like below: \"vote_start\":1,\n\"vote_tally\":4,\n\"tally_end\":20,\n\"slots_per_epoch\":60, See jormungandr docs for more information. NOTE: slot_duration is defined in blockchain section of configuration file private If true, then voting is private otherwise public. This parameters basically controls if votes choices are encrypted or not. representatives_vote_plan TBD, currently not used","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote time","id":"373","title":"vote time"},"374":{"body":"\"vote_plan\": { \"vote_time\": { \"vote_start\": 13, \"tally_start\": 98, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true, \"representatives_vote_plan\": false }, }, blockchain Set of parameters which controls blockchain related configuration. See jormungandr docs for more information. slot_duration Describes how frequent block are produces by network. Slot duration is expressed in seconds. Cannot be longer that 128. block_content_max_size Describes how big a single block can be. Larger blocks can hold more transactions which results in faster transactions processing. However it put more requirements on space and network throughput. block0_time Optional parameter which defines start time of block0. It is useful when one want to defined voting phases that ends and starts precisely in required time. Otherwise block0_time is equal to current time when running vitup tx_max_expiry_epochs Optional parameter which defines what is the maximum duration (expressed in epochs) of transaction timeout. Usually it is equal to 1. consensus_leader_ids Allows to override randomly generated consensus leaders ids. Useful when we have our own pre-generated leaders keys for nodes. linear_fees Transactions fees which defined cost of transaction or vote. constant - constant fee added to each transaction coefficient - coefficient of each transaction output certificate - cost of sending certificate. constant + transaction.output * coefficient + certificate Example: \"linear_fees\": { \"constant\": 1, \"coefficient\": 1, \"certificate\": 2 }, Above configuration will result in: For transaction with 1 input and 1 output 1 + 1 * 1 + 0 = 2 For vote 1 + 0 * 1 + 2 = 3 committees Committee is a wallet that is capable of tallying voting results. This setting allows to use predefined committee rather than generate random by vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » example","id":"374","title":"example"},"375":{"body":"Section describes static data used for voting. Mostly defines parameters for servicing station","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » data","id":"375","title":"data"},"376":{"body":"Current fund related settings: options Defines options available for voters. Should be expressed as coma-separated values. For example: options: \"yes,no\" proposals Number of proposals available for voting challenges Number of challenges available for voting. Challenge is a container for proposals for the same domain reviews Number of reviews for proposals voting_power Threshold for voting participation, expressed in ADA fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime. This data will be shown to users after current voting will ends.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » current fund","id":"376","title":"current fund"},"377":{"body":"Limited subset of settings comparing to current_fund section for next funds fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » next funds","id":"377","title":"next funds"},"378":{"body":"Service related settings NOTE: this section is ignored when only generating data using vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » service","id":"378","title":"service"},"379":{"body":"Control version of backend. Manipulating this parameter we can tell voting app to force user to self-update application.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » version","id":"379","title":"version"},"38":{"body":"The network could be running either bft or genesis consensus. In the former case the node must have the private key of a registered as a slot leader. For the latter the private keys of a registered stake pool are needed. More information here","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a node generating blocks in an existing network","id":"38","title":"As a node generating blocks in an existing network"},"380":{"body":"Controls protocol over which vitup is available for client","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » https","id":"380","title":"https"},"381":{"body":"{ \"initials\":{ \"snapshot\":{ \"tag\":\"daily\", \"content\":[ { \"count\":2, \"level\":1234 }, { \"name\":\"alice\" }, { \"name\":\"bob\", \"funds\":10001 } ] }, \"block0\":[ { \"above_threshold\":10, \"pin\":\"1234\" }, { \"name\":\"alice\", \"pin\":\"1234\", \"funds\":10000 }, { \"name\":\"bob\", \"pin\":\"1234\", \"funds\":10000 }, { \"zero_funds\":10, \"pin\":\"1234\" } ] }, \"vote_plan\":{ \"vote_time\":{ \"vote_start\":0, \"tally_start\":134, \"tally_end\":234, \"slots_per_epoch\":3600 }, \"private\":true }, \"blockchain\":{ \"slot_duration\":4, \"block_content_max_size\":20971520, \"linear_fees\":{ \"constant\":0, \"coefficient\":0, \"certificate\":0 } }, \"data\":{ \"current_fund\":{ \"options\":\"yes,no\", \"proposals\":1134, \"challenges\":23, \"reviews\":7045, \"voting_power\":450, \"fund_name\":\"Fund9\", \"fund_id\":9, \"dates\":{ \"insight_sharing_start\":\"2022-05-01T12:00:00Z\", \"proposal_submission_start\":\"2022-05-02T12:00:00Z\", \"refine_proposals_start\":\"2022-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2022-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2022-05-04T12:00:00Z\", \"assessment_qa_start\":\"2022-05-05T12:00:00Z\", \"snapshot_time\":\"2022-05-07T12:00:00Z\", \"next_snapshot_time\":\"2023-05-07T12:00:00Z\", \"next_vote_start_time\":\"2022-07-14T12:00:00Z\" } }, \"next_funds\":[ { \"fund_name\":\"Fund10\", \"fund_id\":10, \"dates\":{ \"insight_sharing_start\":\"2023-05-01T12:00:00Z\", \"proposal_submission_start\":\"2023-05-02T12:00:00Z\", \"refine_proposals_start\":\"2023-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2023-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2023-05-04T12:00:00Z\", \"assessment_qa_start\":\"2023-05-05T12:00:00Z\", \"snapshot_time\":\"2023-05-07T12:00:00Z\", \"voting_start\":\"2023-07-14T12:00:00Z\", \"voting_tally_end\":\"2023-07-14T12:00:00Z\", \"voting_tally_start\":\"2023-07-14T12:00:00Z\", \"next_snapshot_time\":\"2023-07-07T12:00:00Z\", \"next_vote_start_time\":\"2023-07-14T12:00:00Z\" } } ] }, \"version\":\"3.8\"\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Full Example","id":"381","title":"Full Example"},"382":{"body":"This section describe configuration section which can be passed as argument when starting vitup or send to already running environments in order to restart them through rest api.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"382","title":"Configuration"},"383":{"body":"{ \"parameters\": { \"tag\": \"latest\" }, \"content\": [ { \"rep_name\": \"alice\", \"ada\": 1000 }, { \"rep_name\": \"clarice\", \"ada\": 1000 }, { \"name\": \"bob\", \"registration\": { \"target\": [ [\"alice\",1] ], \"slotno\": 0 }, \"ada\": 1000 }, { \"name\": \"david\", \"registration\": { \"target\": [ [\"clarice\",1] ], \"slotno\": 0 }, \"ada\": 1000 } ] Below more detailed explanation for each section element","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Example","id":"383","title":"Example"},"384":{"body":"Snapshot parameters used when importing it to servicing station or mock. tag - snapshot tag which will be used when importing snapshot min_stake_threshold - Minimum lovelace which is required to participate in voting voting_power_cap - Maximum percentage of voting power before capping direct_voters_group - Name of direct registration holders representatives_group - Name of delegated registrations holders (representatives)","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » parameters","id":"384","title":"parameters"},"385":{"body":"Main content of snapshot","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » content","id":"385","title":"content"},"386":{"body":"For user convenience we allow untagged definition of actor. Actor can be representative or direct voter with some data. Depending on fields role is dynamically defined and user can focus only on scenario description pre-generated representative This variant will create new unique wallet with given ada amount rep_name - alias ada - voting power amount external representative Representative with just and voting key. Can be used for already existing wallet rep_name - alias voting_key - voting key in hex external delegator Delegator with just an address. Can be used for already existing wallet in the network name - alias address - address in hex pre-generated delegator Delegator with just an address. Can be used for already existing wallet in the network. Generated delegator will set up new mainnet wallet name - alias registration: registration definition which can be used to describe to which representative delegator delegates his voting power. Field need to define slot at which delegation occurs and distribution. Example: ... \"registration\": { \"target\": [ [ \"clarice\",1 ] ,[ \"alice\",2 ] ], \"slotno\": 0 }\n... Above example divides voting power into 3 parts and assign 1/3 to clarice and 2/3 to alice ada - ada amount Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » actor","id":"386","title":"actor"},"387":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation","id":"387","title":"Data Generation"},"388":{"body":"For developer convenience an in-memory backend is available. Idea is the same as above but env is more lightweight and does not spawn jormungandr or vit-servicing-station. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Mock","id":"388","title":"Mock"},"389":{"body":"Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Configuration","id":"389","title":"Configuration"},"39":{"body":"This is similar to the previous case, but configuring a genesis file is needed. Consult the Advanced section for more information on this procedure.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Creating your own network","id":"39","title":"Creating your own network"},"390":{"body":"vitup start mock --config example\\mock\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Start","id":"390","title":"Start"},"391":{"body":"For full api specs please visit: Mock REST API V0 List Files curl --location --request GET 'http://{mock_address}/api/control/files/list' Get File curl --location --request GET 'http://{mock_address}/api/control/files/get/{path_to_file}' Health curl --location --request GET 'http://{mock_address}/api/health' Change Fund Id curl --location --request POST 'http://{mock_address}/api/control/command/fund/id/{new_fund_id}' Add new fund curl --location --request PUT 'http://{mock_address}/api/control/command/fund/update' \\\n--header 'Content-Type: application/json' \\\n--data-raw '\n{ \"id\": 20, \"fund_name\": \"fund_3\", \"fund_goal\": \"How will we encourage developers and entrepreneurs to build Dapps and businesses on top of Cardano in the next 6 months?\", \"voting_power_threshold\": 8000000000, \"fund_start_time\": \"2022-05-04T10:50:41Z\", \"fund_end_time\": \"2022-05-04T11:00:41Z\", \"next_fund_start_time\": \"2022-06-03T10:40:41Z\", \"registration_snapshot_time\": \"2022-05-04T07:40:41Z\", \"next_registration_snapshot_time\": \"2022-06-02T10:40:41Z\", \"chain_vote_plans\": [ { \"id\": 2136640212, \"chain_voteplan_id\": \"ad6eaebafd2cca7e1829df26c57b340a98b9d513b7eddec8561883f1b99f3b9e\", \"chain_vote_start_time\": \"2022-05-04T10:50:41Z\", \"chain_vote_end_time\": \"2022-05-04T11:00:41Z\", \"chain_committee_end_time\": \"2022-05-04T11:10:41Z\", \"chain_voteplan_payload\": \"public\", \"chain_vote_encryption_key\": \"\", \"fund_id\": 20 } ], \"challenges\": [ { \"id\": 1, \"challenge_type\": \"community-choice\", \"title\": \"Universal even-keeled installation\", \"description\": \"Upgradable\", \"rewards_total\": 7686, \"proposers_rewards\": 844, \"fund_id\": 20, \"challenge_url\": \"http://schneider-group.info\", \"highlights\": { \"sponsor\": \"Kreiger and Wuckert and Sons\" } } ]\n} ' Accept all Fragments Makes mock to accept all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/accept' Reject all Fragments Makes mock to reject all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reject' Hold all Fragments Makes mock to hold all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/pending' Reset Fragment strategy Makes mock to validate all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reset' Make backend unavailable Mock will reject all connections (returns 500) curl --location --request POST 'http://{mock_address}/api/control/command/available/false' Make backend available Mock will accept all connections curl --location --request POST 'http://{mock_address}/api/control/command/available/true' Make account endpoint unavailable Mock will reject n calls to account endpoint and as a result voting app won’t receive voting power for some time. This endpoint assume that one who changes block-account endpoint knows what is the frequency of calls from client and ultimately can be translated to some time of unavailability. curl --location --request POST 'http://{mock_address}/api/control/command/block-account/{number_of_calls_to_reject}' Make account endpoint available Mock will reset account endpoint unavailability curl --location --request POST 'http://{mock_address}/api/control/command/block-account/reset' Add new voters snapshot for specific tag Add (or overwrite) voters snapshot for this particular tag curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/add/{tag}' \\\n--header 'Content-Type: application/json' \\\n--data-raw ' [{\"voting_group\":\"direct\",\"voting_key\":\"241799302733178aca5c0beaa7a43d054cafa36ca5f929edd46313d49e6a0fd5\",\"voting_power\":10131166116863755484},{\"voting_group\":\"dreps\",\"voting_key\":\"0e3fe9b3e4098759df6f7b44bd9b962a53e4b7b821d50bb72cbcdf1ff7f669f8\",\"voting_power\":9327154517439309883}]' Create new voters snapshot for specific tag Create snapshot json which can be uploaded to mock by using ../snapshot/add command. See mock configuration for more details. Example: curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/create' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"tag\": \"daily\", \"content\": [ { \"count\": 2, \"level\": 5000 }, { \"name\": \"darek\", \"funds\": 100 }, { \"key\":\"318947a91d109da7109feaf4625c0cc4e83fe1636ed19408e43a1dabed4090a3\", \"funds\":300 }\n]\n}' Reset environment Resets environment data curl --location --request POST 'http://{mock_address}/api/control/command/reset' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"initials\": { \"block0\": [ { \"above_threshold\": 10, \"pin\": \"1234\" }, { \"name\": \"darek\", \"pin\": \"1234\", \"funds\": 10000 } ] }, \"vote_plan\": { \"vote_time\": { \"vote_start\": 0, \"tally_start\": 100, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true }, \"blockchain\": { \"slot_duration\": 2, \"block_content_max_size\": 20971520, \"block0_time\": \"2022-03-17T05:00:00Z\", \"linear_fees\": { \"constant\": 0, \"coefficient\": 0, \"certificate\": 0 } }, \"data\": { \"options\": \"yes,no\", \"snapshot_time\": \"2022-01-06T11:00:00Z\", \"next_snapshot_time\": \"2022-04-07T11:00:00Z\", \"next_vote_start_time\": \"2022-04-11T11:00:00Z\", \"proposals\": 936, \"challenges\": 25, \"reviews\": 5190, \"voting_power\": 450, \"fund_name\": \"Fund7\", \"fund_id\": 6 }, \"version\":\"3.6\"\n}' see data generation guide for more details Control Health Checks if mock is up curl --location --request POST 'http://{mock_address}/api/control/health' Logs Mock stores record of each request send to it. This endpoint gets all logs from mock curl --location --request POST 'http://{mock_address}/api/control/logs/get'","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin rest commands","id":"391","title":"Admin rest commands"},"392":{"body":"Admin CLI is an alternative for all above calls, available under vitup project. example: vitup-cli --endpoint {mock} disruption control health Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin cli","id":"392","title":"Admin cli"},"393":{"body":"Mock farm is a simple extension for mock service. It allows to run more that one mock at once and give more control to user in term of starting and stopping particular mock instance.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Mock Farm","id":"393","title":"Mock Farm"},"394":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, working_directory: path to folder which config files will be dumped, mocks-port-range: range of ports assigned for usage, protocol: decide whether mock farm should be exposed as http or https, local: should service be exposed on all network interfaces or only 127.0.0.1, token: token limiting access to environment. Must be provided in header API-Token for each request Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock-farm/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Configuration","id":"394","title":"Configuration"},"395":{"body":"vitup start mock-farm --config example\\mock\\mock-farm\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Start","id":"395","title":"Start"},"396":{"body":"OpenApi Requests collection Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Documentation","id":"396","title":"Documentation"},"397":{"body":"In order to take out the burden of providing entire configuration vitup has two configuration modes: quick - which runs on defaults and allow user to override most important parameters using cli arguments: vitup start quick advanced - which allows to defined full configuration as well as external static files for proposals and challenges vitup start advanced","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Configuration modes","id":"397","title":"Configuration modes"},"398":{"body":"There are 4 run modes available in vitup: interactive - where user can push some fragments or query status of nodes endless - [Default] just simple run until stopped by user service - additional manager service will be published at 0.0.0.0:3030. They allow to control (stop/start) and provides resources over http (qr codes or secret keys) mock - lightweight version of backend with does not spawn any jormungandr or vit-servicing-station services. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Run Modes","id":"398","title":"Run Modes"},"399":{"body":"There are two ways of starting vitup in endless mode. One with limited configuration and one with giving full control. vitup start quick --mode endless .. or vitup start advanced --mode endless ..","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Endless mode","id":"399","title":"Endless mode"},"4":{"body":"Jörmungandr refers to the Midgard Serpent in Norse mythology. It is a hint to Ouroboros , the Ancient Egyptian serpent, who eat its own tail, as well as the IOHK paper on proof of stake.","breadcrumbs":"Core Ledger » Core Ledger » Mythology","id":"4","title":"Mythology"},"40":{"body":"The software is bundled with 2 different command line software: jormungandr : the node; jcli : Jörmungandr Command Line Interface, the helpers and primitives to run and interact with the node.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Command line tools","id":"40","title":"Command line tools"},"400":{"body":"vitup start quick --mode service .. or vitup start advanced --mode service .. Once environment is up one can check status or modify existing environment:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Service mode","id":"400","title":"Service mode"},"401":{"body":"start - in order to start new voting stop - stops currently running vote backend (usually it takes 1 min to stop it) status - check status of environment: Idle - environment is not started Starting - environment is starting, please wait until its status is Running, Running - environment is not running and should be accessible, Stopping - environment is stopping, please wait until its Idle to start it with different parameters, files: In order to get qr-codes or secret files from env, two operations are provided: List Files - list all files in data directory for current run Get File - downloads particular file which is visible in List Files operation result","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Admin Operations","id":"401","title":"Admin Operations"},"402":{"body":"Voting backend admin console is an REST API accessible over http or https on port 3030. Using POST/GET http methods admin can send some operations to environment. There are various apps capable of sending REST commands. The simplest is to download Postman and use UI to fire up commands. Download postman: https://www.postman.com/downloads/ Review quick guide, how to send dummy request: https://learning.postman.com/docs/getting-started/sending-the-first-request/ Review guide, how to send different requests with arguments: https://learning.postman.com/docs/sending-requests/requests/ Available commands:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » how to send operations","id":"402","title":"how to send operations"},"403":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/command/status Response Example: Running","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » check environment status","id":"403","title":"check environment status"},"404":{"body":"Default parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start Response Example: start event received Custom parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start/default BODY: json with configuration Response Example: start event received This requests need to pass environment configuration file in Body. stop environment Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/stop Response Example: stop event received","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » start environment","id":"404","title":"start environment"},"405":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/files/list Response Example: { \"content\": { \"network\": [ \"Leader4/node.log\", \"Leader4/node_config.yaml\", \"Leader4/node_secret.yaml\", \"vit_station/vit_config.yaml\", \"initial_setup.dot\", \"Leader1/node.log\", \"Leader1/node_config.yaml\", \"Leader1/node_secret.yaml\", \"Leader3/node.log\", \"Leader3/node_config.yaml\", \"Leader3/node_secret.yaml\", \"Leader2/node.log\", \"Leader2/node_config.yaml\", \"Leader2/node_secret.yaml\", \"Wallet_Node/node.log\", \"Wallet_Node/node_config.yaml\", \"Wallet_Node/node_secret.yaml\" ], \"qr-codes\": [ \"qr-codes/zero_funds_12_0000.png\", \"qr-codes/wallet_25_above_8000_1234.png\", \"qr-codes/wallet_12_below_8000_9807.png\", \"qr-codes/wallet_30_below_8000_9807.png\" ], \"private_keys\": [ \"wallet_13_below_8000\", \"wallet_26_below_8000\", \"wallet_23_above_8000\", \"wallet_26_above_8000\" ], \"private_data\": [ \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/communication_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/encrypting_vote_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/member_secret_key.sk\" ], \"blockchain\": [ \"block0.bin\", \"genesis.yaml\" ] }, \"root\": \"./vit_backend\", \"blockchain_items\": [ \"block0.bin\", \"genesis.yaml\" ]\n}","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » list files","id":"405","title":"list files"},"406":{"body":"User can list or view files available for current voting. To list all available files /api/control/files/list endpoint can be utilized. Then relative path can be provided in /api/control/files/get/.. endpoint. For example: http://{env_endpoint}:3030/api/control/files/get/qr-codes/zero_funds_12_0000.png Request Type: GET Endpoint : http://{env_endpoint}:3030/files/get/{file_path }","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » get files","id":"406","title":"get files"},"407":{"body":"TBD Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Interactive mode","id":"407","title":"Interactive mode"},"408":{"body":"","breadcrumbs":"Core VIT Servicing Station » Core VIT Servicing Station » Core VIT Servicing Station","id":"408","title":"Core VIT Servicing Station"},"409":{"body":"Vit servicing station tests project is a container project vit-servicing-station tests. Tests are validating server correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » vit-servicing-station-tests","id":"409","title":"vit-servicing-station-tests"},"41":{"body":"","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Installation","id":"41","title":"Installation"},"410":{"body":"","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Quick start","id":"410","title":"Quick start"},"411":{"body":"In order to run test vit-servicing-station-server need to be installed or prebuilt.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Prerequisites","id":"411","title":"Prerequisites"},"412":{"body":"In order to build vit-servicing-station in main project folder run: cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Start tests","id":"412","title":"Start tests"},"413":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.)","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Tests categories","id":"413","title":"Tests categories"},"414":{"body":"cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run all functional tests","id":"414","title":"How to run all functional tests"},"415":{"body":"cd vit-servicing-station-tests\ncargo test --features non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run performance tests","id":"415","title":"How to run performance tests"},"416":{"body":"cd vit-servicing-station-tests\ncargo test --features soak,non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run endurance tests","id":"416","title":"How to run endurance tests"},"417":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Frequency","id":"417","title":"Frequency"},"418":{"body":"","breadcrumbs":"Unified Platform » Unified Platform » Unified Platform","id":"418","title":"Unified Platform"},"419":{"body":"The Catalyst-Cardano bridge is a custom bridge interface between Catalyst and a Cardano Node. It tracks data relevant to the unified Catalyst system, as it appears on the Cardano network, in real-time. The bridge is not just a data logger, it also: Acts as an event trigger for other Catalyst systems. Acts as an information server to data pertinent to Catalyst operations.","breadcrumbs":"Unified Platform » Overview » Overview » Overview","id":"419","title":"Overview"},"42":{"body":"This is the recommended method. Releases are all available here .","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From a release","id":"42","title":"From a release"},"420":{"body":"Catalyst has used a tool called dbsync to aquire “snapshot” data. A “snapshot” is a record at a moment in time of all staked ADA in the network. dbsync is a tool which captures a relational interpretation of the Cardano blockchain to an SQL database. This is useful for general-purpose queries of information contained on Cardano, but to query bulk data it is slow, and complex. The relational structure means that individual transactions need to be pieced together from multiple tables. Even with indexes this exerts a heavy efficiency toll when a single transactions state is queried. When bulk data is queried, it results in a large and complex query which takes a very long time to run (on the order of hours). dbsync itself takes a very very long time to sync to the blockchain, and get progressively slower. As at mid january 2023, one dbsync instance in a production environment took more than 5 days to sync with a local node. It is supposed to be possible to recover dbsync database from a backup, however experience shows this is a time consuming process itself. It took more than 12 hours just to load the backup image into the database, but then the node would not sync with main net. These issues cause excessive complexity, slow operation and fragile environments. Project Catalyst is also not in control of the dbsync database schema, and the schema can change between revisions. This could mean the entire database needs to be re-synched (taking days), or the schema changes and breaks tools which rely on the schema.","breadcrumbs":"Unified Platform » Overview » Overview » Issues with the previous systems","id":"420","title":"Issues with the previous systems"},"421":{"body":"The solution detailed here is a new bridge service, that has the following features: Can sync from multiple redundant nodes. Does not need to trust any single node (so it can sync from public nodes). Focused on data and events required by Project Catalyst: Registration Records at all points in the past. Staked ADA at all points in the past. Minimum necessary state to track staked ADA. More efficient database schema. Schema is not accessed directly but via a simple API Service. Prevents downstream consumers from breaking if the DB Schema needs to change. Does not need to snapshot: Data is accumulated progressively, not at instants in time. Data storage allows the state at any past time to be calculated simply and efficiently. Is easy to independently deploy by the Catalyst Community, so they can independently validate data reported by Project Catalyst. Distributed use does not rely on any Catalyst-supplied data, which improves audibility and trust.","breadcrumbs":"Unified Platform » Overview » Overview » The solution","id":"421","title":"The solution"},"422":{"body":"The System has these components: 1 or more Cardano Nodes (Preferably 2 or more) A Pipeline which processes the data from the nodes: Read blocks from multiple nodes Validate blocks by independent reference (A valid block has n independent copies) Queue valid blocks for processing. Read valid blocks from the queue and process every transaction in the block. Calculate the change in staked ADA caused by all transactions in the block. Validate all Registration Records in the block: Record all validated registrations. Record all in-valid registrations (including the reason the registration is invalid). Queue the complete block of transactions, ledger state and registration updates for storing and alerting. Lock the Databases for writing (Transactional) Check if the block being recorded is new: New: Record the updated current ledger state. Record the staked ADA for every stake address which changed in this block (time series record) Record the registrations (time series record) Send alerts to all upstream subscribers that subscribed events have changed. Commit the transaction (unlocks the DB) Already Recorded: Abort the write transaction (release the DB) Read the recorded data from the DB Validate the DB data with the data calculated from the block. If there is any discrepancy, LOG errors and send configured alerts. A REST/HTTP service to report catalyst bridge data Report current staked/unpaid rewards in ADA for any stake address. Report staked/unpaid rewards in ADA for any stake address, at any past time. Report staked/unpaid rewards over a period of previous time, with various processing: Daily Averages All records other Calculate voting power given a set of voting power options for a single address, or all registrations of a particular type. Snapshot (instantaneous) voting power Time window based voting power calculation Linear vs functional voting power function of raw ADA. Capped at a particular % other parameters which can affect the voting power calculation. Catalyst Event stream published via: Kafka other","breadcrumbs":"Unified Platform » Overview » Overview » Architecture Overview","id":"422","title":"Architecture Overview"},"423":{"body":"ContractKeycontract_key: byteshash(concat(contract_hash, parameter_hash))ContractHashcontract_hash : byteshash(Contract.as_bytes())ParameterHashparameter_hashhash(Paramters.as_bytes())ContractCompiled Wasmas_bytes()ParametersStructured Parameter Dataas_bytes() hunger noticedchoose recipedesired dish?","breadcrumbs":"Unified Platform » Overview » Overview » Architectural Diagram","id":"423","title":"Architectural Diagram"},"424":{"body":"The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. However, it is also a useful and capable tool in its own right. It has a secondary use case of allowing the community to INDEPENDENTLY validate their registrations and voting power. Accordingly, it is developed as a stand-alone service. This means it can be easily distributed and deployed INDEPENDENTLY of the rest of the catalyst unified backend services. It has two internal long running tasks. Read, validate and record latest registrations/delegations from the linked block chain. Read and record running total balance and unclaimed rewards for every stake address. It also exposes a Voting Power API. Get voting power for Stake Address or Voting Key as at (timestamp). Would respect the registrations valid at that time. So if you asked for your voting power but you were delegated, the API would return you have X personal voting power, and Y..Z Voting power of yours has been delegated to Keys A-B. Options: Max Registration Age (So regitrations before this date/time are not considered). Must have valid payment address. (So we can later make a valid payment address a necessity if required, and this would also exclude just using stake address.) Voting power calculation type Absolute on the time of snapshot Average Maximum daily value Parameter: Length of time to average over (in days). Voting power linearity Linear (1 ADA = X voting power). Where X is a parameter. Logarithmic (Voting power is attenuated by a logarithmic function). Would need parameters to define the curve. Other?? Get Registration/Delegation information for a Stake Address/Voting Key as at a time. Similar to above but does NOT do any Get all active registrations as at a time. Time and max age of registrations are parameters. If stake addresses without registration are included in the output. What do you think? (edited)","breadcrumbs":"Unified Platform » Overview » Overview » Integration to the Catalyst Unified Backend","id":"424","title":"Integration to the Catalyst Unified Backend"},"425":{"body":"The bridge will need at least 1, and preferably more Cardano Nodes to read blocks from. The Bridge will employ a local consensus model, in place of the absolute trust of a single node. Part of the configuration of the bridge will need to be: the addresses of the available nodes that may be requested for new blocks. the number of nodes which must send concurring blocks before a block is accepted. the number of blocks to retrieve in advance of the current head. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Cardano Nodes » Cardano Nodes","id":"425","title":"Cardano Nodes"},"426":{"body":"","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Bridge Pipeline » Bridge Pipeline","id":"426","title":"Bridge Pipeline"},"427":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Block Reader » Block Reader","id":"427","title":"Block Reader"},"428":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » REST HTTP Service » REST HTTP Service","id":"428","title":"REST HTTP Service"},"429":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Event Stream » Event Stream","id":"429","title":"Event Stream"},"43":{"body":"Jörmungandr’s code source is available on github . Follow the instructions to build the software from sources.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From source","id":"43","title":"From source"},"430":{"body":"The database is private to the catalyst-cardano bridge. Access to it is through the Catalyst-Cardano bridge service. The schema for this database will be managed by the service and is expected to evolve. The concrete schema will be defined as the service is developed, and responsive to the needs of the service. Rather than defining an abstract “ideal” schema in advance, and then being tied to an inefficient implementation.","breadcrumbs":"Unified Platform » Overview » Database » Database » Database","id":"430","title":"Database"},"431":{"body":"Initially, the service will target and store data in Postgresql . However, it should be written in such a way that we can easily replace Postgresql with another DB, such as SurrealDB . To achieve this, database interactions should be contained to a crate which abstracts these interactions. For speed, the service should ALSO attempt to cache as much state internally as it can. However it must be kept in mind that multiple services can and will update the backing database. Accordingly, the internal state should be checked and refreshed/updated as required.","breadcrumbs":"Unified Platform » Overview » Database » Database » Servers","id":"431","title":"Servers"},"432":{"body":"There will initially be three logical databases, though they will NOT be in separate schemas and queries can join information between them. Registration Database Staked ADA Database Transaction State Database","breadcrumbs":"Unified Platform » Overview » Database » Database » High-Level Data Design","id":"432","title":"High-Level Data Design"},"433":{"body":"There will be a Registration Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Registrations Database","id":"433","title":"Registrations Database"},"434":{"body":"The data needed to be stored in each registration record is: The time and date the registration was made. Derived from the block date/time on Cardano, NOT the time it was detected. The location of the transaction on the blockchain. Allows the transaction to be verified against the blockchain. The raw contents of the transaction. The full raw transaction in binary. Allows information not directly pertinent to Catalyst to be retained. The Type of registration. CIP-15 CIP-36 Others Currently, there are only CIP-15 and CIP-36 voter registrations, however, there WILL be others. Invalidity Report Is the registration transaction Valid according to Catalyst transaction validity rules? true - Then this field is NULL. false - then this field contains a JSON formatted report detailing WHY it was invalid. Registration specific fields Fields which represent the meta-data of the registration itself. These fields need to be able to be efficiently searched.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Data","id":"434","title":"Data"},"435":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Queries","id":"435","title":"Queries"},"436":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. Return the MOST current registration.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Current Voter Registration","id":"436","title":"Current Voter Registration"},"437":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. For each unique stake address: Return the MOST current registration. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » All Current Voter Registrations","id":"437","title":"All Current Voter Registrations"},"438":{"body":"There will be a Staked ADA Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked ADA Database","id":"438","title":"Staked ADA Database"},"439":{"body":"The data needed to be stored in each staked ADA record is: The Stake address. The time and date the ADA staked/rewarded changed. Derived from the block date/time on Cardano, NOT the time it was detected. IF the staked ADA changed MULTIPLE times in the same block: this record contains the total at the END of all updates. The block on the blockchain when this stake address total changed. Allows the transaction/s to be verified against the blockchain. The total staked ADA as at this Block. The total unpaid-rewards ADA as at this Block. Rewards are earned for stake addresses at the end of epochs. They are specially accounted for and need to be withdrawn. This total is the total of all ADA which has been awarded to the stake address but NOT yet withdrawn. Note: ONLY stake addresses which CHANGE are recorded. It’s possible (probable?) that ONLY one of the total staked ADA or total unpaid rewards ADA will update at a time in a single block. However, regardless of which total updates, the record must faithfully record the total current at that time for both. For example: Staked ADA starts at 1234 and Unpaid Rewards ADA starts at 95. At 12:43 Staked ADA changes to 1200 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 95. At 14:55 Unpaid Rewards changes to 143 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 143.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Data","id":"439","title":"Data"},"44":{"body":"All commands come with usage help with the option --help or -h. For jcli, it is possible to generate the auto completion with: jcli auto-completion bash ${HOME}/.bash_completion.d Supported shells are: bash fish zsh powershell elvish Note: Make sure ${HOME}/.bash_completion.d directory previously exists on your HD. In order to use auto completion you still need to: source ${HOME}/.bash_completion.d/jcli.bash You can also put it in your ${HOME}/.bashrc. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Help and auto completion","id":"44","title":"Help and auto completion"},"440":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Queries","id":"440","title":"Queries"},"441":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Current Staked ADA","id":"441","title":"Current Staked ADA"},"442":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). For each unique stake address: Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » All Current Staked ADA","id":"442","title":"All Current Staked ADA"},"443":{"body":"AsAt - The time the registration must be valid by. Age - The Oldest record to return. For the period requested return a list of all staked balances where each record in the list is: date-time - The time this balance applies to. slot - The slot on the Cardano blockchain the balance changed in. staked - The total Staked at this time. rewarded - The total Unclaimed rewards at this time. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked Balances for a period","id":"443","title":"Staked Balances for a period"},"444":{"body":"This is NOT a time-series database, it tracks: the current state of the sync from the block chain all current UTXO’s any other data it needs to calculate staked-ADA changes as blocks arrive. It is updated to track current state and is not historical. This state is updated atomically, along with: The staked ADA database The registration database This ensures that the DB is always in-sync with discrete minted blocks on the block-chain. The DB NEVER store a partial block update. Data There is no firm specification of the data that needs to be stored. It should be adapted to efficiently and quickly allow for the functions of the process to execute. The ONLY critical information that it contains is the current block last synced. All other information and the structure of it will need to be decided during implementation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Transaction State Database » Transaction State Database","id":"444","title":"Transaction State Database"},"445":{"body":"","breadcrumbs":"Rust API » Rust API » Rust API","id":"445","title":"Rust API"},"446":{"body":"","breadcrumbs":"Rust API » Rust API Documentation and Packages » Rust API Documentation and Packages","id":"446","title":"Rust API Documentation and Packages"},"447":{"body":"blockchain chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser","breadcrumbs":"Rust API » Rust API Documentation and Packages » blockchain","id":"447","title":"blockchain"},"448":{"body":"db-sync-explorer jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » db-sync-explorer","id":"448","title":"db-sync-explorer"},"449":{"body":"explorer : explorer service for jormungandr cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » explorer : explorer service for jormungandr","id":"449","title":"explorer : explorer service for jormungandr"},"45":{"body":"In order to start the node, you first need to gather the blockchain information you need to connect to. the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. These information are essentials to start your node in a secure way. The genesis block is the first block of the blockchain. It contains the static parameters of the blockchain as well as the initial funds. Your node will utilise the Hash to retrieve it from the other peers. It will also allows the Node to verify the integrity of the downloaded genesis block . The trusted peers are the nodes in the public network that your Node will trust in order to initialise the Peer To Peer network.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting a passive node","id":"45","title":"Starting a passive node"},"450":{"body":"integration-tests catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit iapyx catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vitup catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » integration-tests","id":"450","title":"integration-tests"},"451":{"body":"jormungandr : Midgard Serpent cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandr : Midgard Serpent","id":"451","title":"jormungandr : Midgard Serpent"},"452":{"body":"jormungandrwallet chain-addr chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandrwallet","id":"452","title":"jormungandrwallet"},"453":{"body":"mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » mjolnir","id":"453","title":"mjolnir"},"454":{"body":"settings","breadcrumbs":"Rust API » Rust API Documentation and Packages » settings","id":"454","title":"settings"},"455":{"body":"sparse-array","breadcrumbs":"Rust API » Rust API Documentation and Packages » sparse-array","id":"455","title":"sparse-array"},"456":{"body":"vit-servicing-station-cli vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-cli","id":"456","title":"vit-servicing-station-cli"},"457":{"body":"vit-servicing-station-server vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-server","id":"457","title":"vit-servicing-station-server"},"458":{"body":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes symmetric-cipher wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » Rust API Documentation and Packages » wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology","id":"458","title":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology"},"459":{"body":"This guide is intended to be a set of guidelines, not hard rules. These represent the default for Rust code. Exceptions can (and sometimes should) be made, however: They should have a comment explaining what is special about this code which means the rule shouldn’t apply here. Exceptions should be highlighted in the PR and discussed with the team. 🦀 Rust Style Guide Toolchain Basic Rules Creating a new crate Exceptions for clippy Guidelines Prefer references over generics Abbreviations and naming things General advice around names Pay attention to the public API of your crate Type safety Use newtypes (a.k.a. microtypes) Don’t over-abstract Unsafe code Docs Doctests Write code as if it’s going to be in a web server Error handling Handling expected errors Use thiserror for recoverable errors Use color_eyre for unrecoverable errors","breadcrumbs":"Rust API » 🦀 Rust Style Guide » 🦀 Rust Style Guide","id":"459","title":"🦀 Rust Style Guide"},"46":{"body":"Your node configuration file may look like the following:","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » The node configuration","id":"46","title":"The node configuration"},"460":{"body":"We use the latest stable version of Rust. You can get an up-to-date toolchain by running nix develop. If you’re not a Nix user, make sure you have the correct versions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Toolchain","id":"460","title":"Toolchain"},"461":{"body":"Formatting is “whatever rustfmt does”. In cases where rustfmt doesn’t yet work (i.e. macros, let-else), try to stay consistent with the rest of the codebase. Clippy should be used whenever possible, with pedantic lints turned on. There are some lints (particularly those from pedantic) that are generally unhelpful, often due to high false positive rates There is a list of known exceptions that can be added to if you run into anything particularly bad. Clippy is not enabled for older parts of the codebase. This is allowed for legacy code, but any new code should have clippy enabled. We’re actively working to get it enabled on everything Avoid raw identifiers. Instead, use abbreviations/misspellings (i.e. r#crate -> krate, r#type -> ty, etc) TLDR: run: cargo fmt\ncargo clippy\ncargo `clippy` --all-features before submitting a PR","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Basic Rules","id":"461","title":"Basic Rules"},"462":{"body":"We add the following preamble to all crates’ lib.rs: #![warn(clippy::pedantic)]\n#![forbid(clippy::integer_arithmetic)]\n#![forbid(missing_docs)]\n#![forbid(unsafe_code)]\n#![allow(/* known bad lints outlined below */)] We enable #![forbid(missing_docs)] for a couple of reasons: it forces developers to write doc comments for publicly exported items it serves as a reminder that the item you’re working on is part of your public API We enable #![forbid(unsafe_code)] to reinforce the fact that unsafe code should not be mixed in with the rest of our code . More details are below. We enable #![forbid(integer_arithmetic)] to prevent you from writing code like: let x = 1;\nlet y = 2;\nlet z = x + y; Why is this bad? Integer arithmetic may panic or behave unexpectedly depending on build settings. In debug mode, overflows cause a panic, but in release mode, they silently wrap. In both modes, division by 0 causes a panic. By forbidding integer arithmetic, you have to choose a behaviour, by writing either: a.checked_add(b) to return an Option that you can error-handle a.saturating_add(b) to return a + b, or the max value if an overflow occurred a.wrapping_add(b) to return a + b, wrapping around if an overflow occurred By being explicit, we prevent the developer from “simply not considering” how their code behaves in the presence of overflows. In a ledger application, silently wrapping could be catastrophic, so we really want to be explicit about what behaviour we expect.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Creating a new crate","id":"462","title":"Creating a new crate"},"463":{"body":"These lints are disabled: clippy::match_bool - sometimes a match statement with true => and false => arms is sometimes more concise and equally readable clippy::module_name_repetition - warns when creating an item with a name than ends with the name of the module it’s in clippy::derive_partial_eq_without_eq - warns when deriving PartialEq and not Eq. This is a semver hazard. Deriving Eq is a stronger semver guarantee than just PartialEq, and shouldn’t be the default. clippy::missing_panics_doc - this lint warns when a function might panic, but the docs don’t have a panics section. This lint is buggy, and doesn’t correctly identify all panics. Code should be written to explicitly avoid intentional panics. You should still add panic docs if a function is intended to panic under some conditions. If a panic may occur, but you’d consider it a bug if it did, don’t document it. We disable this lint because it creates a false sense of security.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Exceptions for clippy","id":"463","title":"Exceptions for clippy"},"464":{"body":"","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Guidelines","id":"464","title":"Guidelines"},"465":{"body":"It’s tempting to write a function like this: fn use_str(s: impl AsRef) { let s = s.as_ref(); println!(\"{s}\");\n} Unfortunately, this has a few downsides: it increases compile times if used in a trait, it makes that trait not object-safe if the body of the function is large, it bloats binary size, which can hurt performance by increasing pressure on the instruction cache it makes type inference harder Now that’s not to say you should never use generics. Of course, there are plenty of good reasons to use generics. But if the only reason to make your function generic is “slightly easier to use at the call-site”, consider just using a plain reference/slice instead: fn use_str(s: &str) { println!(\"{s}\");\n} This does mean you may have to use .as_ref() at the call-site, but generally this is preferred compared to the downsides of using generics. Similar logic applies to AsRef, Into, and a few other common types. The general principle is that a little bit of extra text at the call-site is usually worth the benefits from not having generic functions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Prefer references over generics","id":"465","title":"Prefer references over generics"},"466":{"body":"We should be careful with abbreviations. Similar to above, they do indeed shorten the code you write, but at the cost of some readability. It’s important to balance the readability cost against the benefits of shorter code. Some guidelines for when to use abbreviations: if it’s something you’re going to type a lot, an abbreviation is probably the right choice. (i.e. s is an OK name for a string in very string-heavy code) if it’s a well-known abbreviation, it’s probably good (e.g. ctx for “context”, db for “database”) if it’s ambiguous (i.e. it could be short for multiple things) either use the full word, or a longer abbreviation that isn’t ambiguous. Remember that abbreviations are context-sensitive. (if I see db in a database library, it’s probably “database”. If I see it in an audio processing library it is probably “decibels”). General advice around names avoid foo.get_bar(), instead just call it foo.bar() use into_foo() for conversions that consume the original data use as_foo() for conversions that convert borrowed data to borrowed data use to_foo() for conversions that are expensive use into_inner() for extracting a wrapped value","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Abbreviations and naming things","id":"466","title":"Abbreviations and naming things"},"467":{"body":"Items (functions, modules, structs, etc) should be private by default. This is what Rust does anyways, but make sure you pay attention when marking something pub. Try to keep the public API of your crate as small as possible. It should contain only the items needed to provide the functionality it’s responsible for. A good “escape hatch” is to mark things as pub(crate). This makes the item pub but only within your crate . This can be handy for “helper functions” that you want to use everywhere within your crate, but don’t want to be available outside.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Pay attention to the public API of your crate","id":"467","title":"Pay attention to the public API of your crate"},"468":{"body":"Rust has a powerful type system, so use it! Where possible, encode important information in the type system. For example, using NonZeroU64 might make sense if it would be ridiculous for a number to be zero. Of course, you can go too far with this. Rust’s type system is Turing-complete, but we don’t want to write our whole program in the type system.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Type safety","id":"468","title":"Type safety"},"469":{"body":"If you are handling email addresses, don’t use String. Instead, create a newtype wrapper with: struct Email(String); This prevents you from using a Password where you meant to use an Email, which catches more bugs at compile time. Consider using the microtype library to generate boilerplate: #[string]\nString { Email, Username, Address, // etc...\n} This generates struct Email(String), struct Username(String), etc. for you. See the docs for more info. If your type is responsible for handling secret data, mark it #[secret] to: zeroize the memory on drop redact the Debug impl prevent serialization prevent use without .expose_secret()","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Use newtypes (a.k.a. microtypes)","id":"469","title":"Use newtypes (a.k.a. microtypes)"},"47":{"body":"This config shouldn’t work as it is, the ip address and port for the trusted peer should be those of an already running node. Also, the public_address (‘u.x.v.t’) should be a valid address (you can use an internal one, eg: 127.0.0.1). Furthermore, you need to have permission to write in the path specified by the storage config. storage: \"/mnt/cardano/storage\" rest: listen: \"127.0.0.1:8443\" p2p: trusted_peers: - address: \"/ip4/104.24.28.11/tcp/8299\" id: ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d Description of the fields: storage: (optional) Path to the storage. If omitted, the blockchain is stored in memory only. log: (optional) Logging configuration: level: log messages minimum severity. If not configured anywhere, defaults to “info”. Possible values: “off” “critical” “error” “warn” “info” “debug” “trace” format: Log output format, plain or json. output: Log output destination. Possible values are: stdout: standard output stderr: standard error syslog: syslog (only available on Unix systems) syslogudp: remote syslog (only available on Unix systems) host: address and port of a syslog server hostname: hostname to attach to syslog messages journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages. file: path to the log file. rest: (optional) Configuration of the REST endpoint. listen: address : port to listen for requests tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled p2p: P2P network settings trusted_peers: (optional) the list of nodes’s multiaddr with their associated public_id to connect to in order to bootstrap the P2P topology (and bootstrap our local blockchain); public_id: (optional) the node’s public ID that will be used to identify this node to the network. public_address: multiaddr string specifying address of the P2P service. This is the public address that will be distributed to other peers of the network that may find interest in participating to the blockchain dissemination with the node. listen: (optional) address : port to specifies the address the node will listen to to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: The dissemination topics this node is interested to hear about: messages: Transactions and other ledger entries. Typical setting for a non-mining node: low. For a stakepool: high; blocks: Notifications about new blocks. Typical setting for a non-mining node: normal. For a stakepool: high. max_connections: The maximum number of simultaneous P2P connections this node should maintain. explorer: (optional) Explorer settings enabled: True or false no_blockchain_updates_warning_interval: (optional, seconds) if no new blocks were received after this period of time, the node will start sending you warnings in the logs.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Note","id":"47","title":"Note"},"470":{"body":"In general, prefer plain functions over a struct + trait implementation. For example, instead of this: // BAD\ntrait GetBar { fn bar(&self) -> &Bar;\n} impl GetBar for Foo { fn bar(&self) -> &Bar { &self.bar }\n} write this: // GOOD\nimpl Foo { fn bar(&self) -> &Bar { &self.bar }\n} I.e., don’t use a trait if you don’t need it. A common reason why people do this is to mock out a particular function call for testing. This can be useful in a few select places, such as interacting with the real world. Eg, networking, clocks, randomness, etc. However, it has some significant downsides. it means you’re not actually testing this code. This might be fine for some types of code (e.g. database code). It might be unreasonable to rely on a database for unit tests. However, if your whole test suite is organized around this, your business logic won’t get tested. it forces you to use a trait, which have restrictions that plain functions don’t have: it forces you into either generics or dynamic dispatch (often with a heap allocation if you don’t want to play the lifetime game) you may now have to think about object safety, which can be very tricky for some APIs async functions are not properly supported it’s not usable in a const context Some alternative patterns are: try to rewrite your test to avoid needing a mock if you know all the variants at compile time, consider using an enum swap out the implementation with conditional compilation","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Don’t over-abstract","id":"470","title":"Don’t over-abstract"},"471":{"body":"If you need unsafe code, put it in its own crate with a safe API. And really think hard about whether you need unsafe code. There are times when you absolutely do need it, but this project cares more about correctness than performance. If you find yourself wanting to use unsafe, try the following: if you want to create bindings to a C/C++ library: First, see if there is a pure-Rust implementation. Otherwise, search on crates.io for a _sys crate. if you want to create a cool data structure that requires unsafe: does it really need unsafe? is it a doubly linked list? If so, have you got benchmarks that show that a VecDeque is insufficient? Something something cache-friendly… is there a suitable implementation on crates.io? is this data structure really noticeably better than what we have in std? if you want to do a performance optimization (e.g. using unreachable_unchecked() to remove a bounds check): Encode it in the type system, and put it in a separate crate with a safe API. If you can’t do that, it’s probably an indication that the mental model is also too complicated for a human to keep track of. if you want to write a test that makes sure the code does the right thing “even in the presence of UB”, just don’t All unsafe code must be tested with Miri.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Unsafe code","id":"471","title":"Unsafe code"},"472":{"body":"As mentioned above, we should enable #![deny(missing_docs)] on all new code. But that doesn’t mean we shouldn’t document private items. Ideally, we’d document as much as possible. Of course, for tiny helper functions, or functions whose behaviour is obvious from looking don’t need documentation. For example, this sort of comment doesn’t add much: /// Sets self.bar to equal bar\nfn set_bar(&mut self, bar: Bar) { self.bar = bar;\n} If this is a private member, don’t bother with this comment. If it’s public, something like this is fine just to get clippy to shut up. But if it’s at all unclear what’s going on, try to use a more descriptive comment. If adding a dependency, add a comment explaining what the dependency does.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Docs","id":"472","title":"Docs"},"473":{"body":"Try to use doctests. Especially for less obvious code, a small example can be really helpful. Humans learn by copying examples, so providing some can drastically reduce the amount of time a new contributor needs to become productive. If you need some setup for your tests that you don’t want to render in docs, prefix the line with #. When combined with the include macro, this can lead to pretty concise but also powerful test setup. If you need some inspiration, check out the docstests for diesel.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Doctests","id":"473","title":"Doctests"},"474":{"body":"Write code as if it’s going to end up being run in a web server. This means a few things: all inputs are potentially malicious code should be usable as a library without going through a text interface (i.e. your library should expose a Rust API)","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Write code as if it’s going to be in a web server","id":"474","title":"Write code as if it’s going to be in a web server"},"475":{"body":"Error handling in Rust is complex, which represents the real-world complexity of error handling. Broadly speaking, there are two types of error: Expected errors are errors that are expected to occur during normal operation of the application. For example, in bug free code, it would still be expected to see network timeout errors, since that networking is inherently fallible. The exact error handling strategy may vary, but often involves returning a Result. Unexpected errors are errors that are not expected to occur. If they do occur, it represents a bug. These errors are handled by panicking. As much as possible, we try to make these cases impossible by construction by using the correct types for data. For example, imagine you have a struct that represents “a list with at least one element”. You could write: struct NonEmptyList { inner: Vec,\n} impl NonEmptyList { /// Doesn't need to be an Option<&T> because the list is guaranteed to have at least 1 element fn first(&self) -> &T { inner.get(0).expect(\"guaranteed to have at least 1 element\") }\n} This would be fine , since it represents a bug if this panic is ever hit. But it would be better to write it like this: struct NonEmptyList { head: T, tail: Vec,\n} impl NonEmptyList { fn first(&self) -> &T { &self.head }\n} This provides the compiler with more information about the invariants of our type. This allows us to eliminate the error at compile time.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Error handling","id":"475","title":"Error handling"},"476":{"body":"Well-behaved code doesn’t panic. So if our response to encountering an expected error is to panic, our software is not well-behaved. Instead, we should use Result to represent data that might be an error. But how do we pick E? There are two main choices for E: Use thiserror for recoverable errors In contexts where we may want to recover from errors, we should use a dedicated error type. We generate these with thiserror: #[derive(Debug, Error)]\nenum FooError { #[error(\"failed to bar\")] Bar, #[error(\"failed to baz\")] Baz,\n} This allows the user to write: match try_foo() { Ok(foo) => println!(\"got a foo: {foo}\"), Err(FooError::Bar) => eprintln!(\"failed to bar\"), Err(FooError::Baz) => eprintln!(\"failed to baz\"),\n} Use color_eyre for unrecoverable errors In contexts where we don’t want to recover from errors, use Report from the color_eyre crate. This is a trait object based error type which allows you to “fire and forget” an error. While technically possible , it’s less ergonomic to recover from a Result. Therefore, only use this in contexts where the correct behaviour is “exit the program”. This is commonly the case in CLI apps. However , even in CLI apps, it’s good practice to split the logic into a lib.rs file (or modules) and have a separate binary. Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Handling expected errors","id":"476","title":"Handling expected errors"},"477":{"body":"","breadcrumbs":"Web API » Web API » Web API","id":"477","title":"Web API"},"478":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » dbSync Explorer HTTP/REST API V1 » dbSync Explorer HTTP/REST API V1","id":"478","title":"dbSync Explorer HTTP/REST API V1"},"479":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Servicing Station HTTP/REST API V0 » VIT Servicing Station HTTP/REST API V0","id":"479","title":"VIT Servicing Station HTTP/REST API V0"},"48":{"body":"jormungandr --config config.yaml --genesis-block-hash 'abcdef987654321....' The ‘abcdef987654321….’ part refers to the hash of the genesis. This should be given to you from one of the peers in the network you are connecting to. In case you have the genesis file (for example block-0.bin, because you are creating the network) you can get this hash with jcli. jcli genesis hash --input block-0.bin or, in case you only have the yaml file jcli genesis encode --input genesis.yaml | jcli genesis hash Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting the node","id":"48","title":"Starting the node"},"480":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock Farm HTTP/REST API V0 » VIT Testing Mock Farm HTTP/REST API V0","id":"480","title":"VIT Testing Mock Farm HTTP/REST API V0"},"481":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock HTTP/REST API V0 » VIT Testing Mock HTTP/REST API V0","id":"481","title":"VIT Testing Mock HTTP/REST API V0"},"482":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V0 » Vote Ledger HTTP/REST API V0","id":"482","title":"Vote Ledger HTTP/REST API V0"},"483":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V1 » Vote Ledger HTTP/REST API V1","id":"483","title":"Vote Ledger HTTP/REST API V1"},"484":{"body":"First off, thanks for taking the time to contribute! ❤️ All types of contributions are encouraged and valued. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 And if you like the project, but just don’t have time to contribute, that’s fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: Star the project Tweet about it Refer this project in your project’s readme Mention the project at local meetups and tell your friends/colleagues","breadcrumbs":"Contributing to Catalyst Core » Contributing to Catalyst Core","id":"484","title":"Contributing to Catalyst Core"},"485":{"body":"Code of Conduct I Have a Question I Want To Contribute Reporting Bugs Suggesting Enhancements Your First Code Contribution Improving The Documentation Styleguides Commit Messages","breadcrumbs":"Contributing to Catalyst Core » Table of Contents","id":"485","title":"Table of Contents"},"486":{"body":"This project and everyone participating in it is governed by the Catalyst Core Code of Conduct . By participating, you are expected to uphold this code. Please report unacceptable behavior to mailto:code-of-conduct@iohk.io .","breadcrumbs":"Contributing to Catalyst Core » Code of Conduct","id":"486","title":"Code of Conduct"},"487":{"body":"If you want to ask a question, we assume that you have read the available Documentation . Before you ask a question, it is best to search for existing Issues that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. If you then still feel the need to ask a question and need clarification, we recommend the following: Open an Issue . Provide as much context as you can about what you’re running into. Provide project and platform versions (rustc --version --verbose, etc), depending on what seems relevant. We will then take care of the issue as soon as possible.","breadcrumbs":"Contributing to Catalyst Core » I Have a Question","id":"487","title":"I Have a Question"},"488":{"body":"","breadcrumbs":"Contributing to Catalyst Core » I Want To Contribute","id":"488","title":"I Want To Contribute"},"489":{"body":"When contributing to this project, you must agree: that you have authored 100% of the content that you have the necessary rights to the content and that the content you contribute may be provided under the project license.","breadcrumbs":"Contributing to Catalyst Core » Legal Notice","id":"489","title":"Legal Notice"},"49":{"body":"It is possible to query the node via its REST Interface. In the node configuration, you have set something like: # ... rest: listen: \"127.0.0.1:8443\" #... This is the REST endpoint to talk to the node, to query blocks or send transaction. It is possible to query the node stats with the following end point: curl http://127.0.0.1:8443/api/v0/node/stats The result may be: {\"blockRecvCnt\":120,\"txRecvCnt\":92,\"uptime\":245} THE REST API IS STILL UNDER DEVELOPMENT Please note that the end points and the results may change in the future. To see the whole Node API documentation: Voting ledger REST API V0 Voting ledger REST API V1 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » REST Api » REST Api","id":"49","title":"REST Api"},"490":{"body":"Before Submitting a Bug Report A good bug report shouldn’t leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible. Make sure that you are using the latest version. Determine if your bug is really a bug and not an error on your side. e.g. using incompatible environment components/versions (Make sure that you have read the documentation . If you are looking for support, you might want to check this section ). To see if other users have experienced (and potentially already solved) the same issue you are having. Check if there is not already a bug report existing for your bug or error in the bug tracker . Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. Collect information about the bug: Stack trace (Traceback) OS, Platform and Version (Windows, Linux, macOS, x86, ARM) Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. Possibly your input and the output Can you reliably reproduce the issue? And can you also reproduce it with older versions? How Do I Submit a Good Bug Report? You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to contact@iohk.io . We use GitHub issues to track bugs and errors. If you run into an issue with the project: Open an Issue . (Since we can’t be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.) Explain the behavior you would expect and the actual behavior. Please provide as much context as possible. Describe the reproduction steps that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case. Provide the information you collected in the previous section. Once it’s filed: The project team will label the issue accordingly. A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps. The issue would then be marked as needs-repro. Bugs with the needs-repro tag will not be addressed until they are reproduced. If the team is able to reproduce the issue, it will be marked needs-fix. It may possibly be marked with other tags (such as critical). The issue will then be left to be implemented by someone .","breadcrumbs":"Contributing to Catalyst Core » Reporting Bugs","id":"490","title":"Reporting Bugs"},"491":{"body":"This section guides you through submitting an enhancement suggestion for Catalyst Core, including completely new features and minor improvements to existing functionality . Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions. Before Submitting an Enhancement Make sure that you are using the latest version. Read the documentation carefully. Find out if the functionality is already covered, maybe by an individual configuration. Perform a search to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. Find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you’re just targeting a minority of users, consider writing an add-on/plugin library. How Do I Submit a Good Enhancement Suggestion? Enhancement suggestions are tracked as GitHub issues . Use a clear and descriptive title for the issue to identify the suggestion. Provide a step-by-step description of the suggested enhancement in as many details as possible. Describe the current behavior and explain which behavior you expected to see instead and why. At this point you can also tell which alternatives do not work for you. You may want to include screenshots and animated GIFs . This can help you demonstrate the steps or point out the part which the suggestion is related to. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux. Explain why this enhancement would be useful to most Catalyst Core users. You may also want to point out the other projects that solved it better and which could serve as inspiration.","breadcrumbs":"Contributing to Catalyst Core » Suggesting Enhancements","id":"491","title":"Suggesting Enhancements"},"492":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Your First Code Contribution","id":"492","title":"Your First Code Contribution"},"493":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Improving The Documentation","id":"493","title":"Improving The Documentation"},"494":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Styleguides","id":"494","title":"Styleguides"},"495":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Commit Messages","id":"495","title":"Commit Messages"},"496":{"body":"","breadcrumbs":"Contributor Covenant Code of Conduct » Contributor Covenant Code of Conduct","id":"496","title":"Contributor Covenant Code of Conduct"},"497":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Contributor Covenant Code of Conduct » Our Pledge","id":"497","title":"Our Pledge"},"498":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others’ private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Contributor Covenant Code of Conduct » Our Standards","id":"498","title":"Our Standards"},"499":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Responsibilities","id":"499","title":"Enforcement Responsibilities"},"5":{"body":"This chapter covers the general concepts of the blockchain, and their application in the node, and is followed by the node organisation and the user interaction with it.","breadcrumbs":"Core Ledger » General Concepts » General Concepts » General Concepts","id":"5","title":"General Concepts"},"50":{"body":"The node can be configured to work as a explorer. This consumes more resources, but makes it possible to query data otherwise not available.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Explorer mode","id":"50","title":"Explorer mode"},"500":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Contributor Covenant Code of Conduct » Scope","id":"500","title":"Scope"},"501":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at conduct@iohk.io. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement","id":"501","title":"Enforcement"},"502":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Guidelines","id":"502","title":"Enforcement Guidelines"},"503":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Contributor Covenant Code of Conduct » 1. Correction","id":"503","title":"1. Correction"},"504":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 2. Warning","id":"504","title":"2. Warning"},"505":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 3. Temporary Ban","id":"505","title":"3. Temporary Ban"},"506":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Contributor Covenant Code of Conduct » 4. Permanent Ban","id":"506","title":"4. Permanent Ban"},"507":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla’s code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations . Found a bug? Edit this page on GitHub.","breadcrumbs":"Contributor Covenant Code of Conduct » Attribution","id":"507","title":"Attribution"},"508":{"body":"This markup is available to enhance the presentation of the book. Info A beautifully styled message. Example My example is the best! Note A plain note. Data loss The following steps can lead to irrecoverable data corruption. This will take a while, go and grab a drink of water. Referencing and dereferencing The opposite of referencing by using & is dereferencing , which is accomplished with the dereference operator, *. Bug This syntax won’t work in Python 3: print \"Hello, world!\"","breadcrumbs":"Example Enhanced Markup » Example Enhanced Markup","id":"508","title":"Example Enhanced Markup"},"509":{"body":"AB Don’t Click Me Can helpAnyoneGo to https://github.com/input-output-hk/catalyst-coreHow to contribute?Reporting bugsSharing ideasAdvocating Found a bug? Edit this page on GitHub.","breadcrumbs":"Example Enhanced Markup » Example Rendered Diagrams","id":"509","title":"Example Rendered Diagrams"},"51":{"body":"There are two ways of enabling the explorer api. It can either be done by passing the --enable-explorer flag on the start arguments or by the config file: explorer: enabled: true","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Configuration","id":"51","title":"Configuration"},"510":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Suffix » Suffix","id":"510","title":"Suffix"},"52":{"body":"For configuring CORS the explorer API, this needs to be done on the REST section of the config, as documented here .","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » CORS","id":"52","title":"CORS"},"53":{"body":"A graphql interface can be used to query the explorer data. When enabled, two endpoints are available in the REST interface : /explorer/graphql /explorer/playground The first is the one that queries are made against, for example: curl \\ -X POST \\ -H \"Content-Type: application/json\" \\ --data '{'\\ '\"query\": \"{'\\ ' status {'\\ ' latestBlock {'\\ ' chainLength'\\ ' id'\\ ' previousBlock {'\\ ' id'\\ ' }'\\ ' }'\\ ' }'\\ '}\"'\\ '}' \\ http://127.0.0.1:8443/explorer/graphql While the second serves an in-browser graphql IDE that can be used to try queries interactively. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » API","id":"53","title":"API"},"54":{"body":"","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » How to start a node as a leader candidate","id":"54","title":"How to start a node as a leader candidate"},"55":{"body":"Like in the passive node case, two things are needed to connect to an existing network the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. The node configuration could be the same as that for running a passive node . There are some differences depending if you are connecting to a network running a genesis or bft consensus protocol.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Gathering data","id":"55","title":"Gathering data"},"56":{"body":"Registering a stake pool In order to be able to generate blocks in an existing genesis network, a registered stake pool is needed. Creating the secrets file Put the node id and private keys in a yaml file in the following way: Example filename: node_secret.yaml genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file Starting the Genesis node jormungandr --genesis-block-hash asdf1234... --config config.yaml --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a genesis blockchain","id":"56","title":"Connecting to a genesis blockchain"},"57":{"body":"In order to generate blocks, the node should be registered as a slot leader in the network and started in the following way. The secret file Put secret key in a yaml file, e.g. node_secret.yaml as follows: bft: signing_key: ed25519_sk1kppercsk06k03yk4qgea.... where signing_key is a private key associated to the public id of a slot leader. Starting the BFT node jormungandr --genesis-block asdf1234... --config node.config --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a BFT blockchain","id":"57","title":"Connecting to a BFT blockchain"},"58":{"body":"This chapter covers the node documentation, necessary to have a working system. It covers the network, logging and storage parameters.","breadcrumbs":"Core Ledger » Configuration » Configuration » Configuration","id":"58","title":"Configuration"},"59":{"body":"This is an common example of a Jörmungandr node configuration file typically named node-config.yaml. However your’s will vary depending on your needs. Additionally, this configuration has been tested on a specific Jörmungandr version and may change with newer versions. It’s important to keep in mind that the trusted_peers portion of this configuration will be different for each Cardano blockchain network. If you’re trying to connect this node to a specific network, you need to know: its genesis block hash its associated list of trusted peers. Example Configuration - 1: ---\nlog: output: stderr level: info format: plain http_fetch_block0_service: - https://url/jormungandr-block0/raw/master/data skip_bootstrap: false # If set to true - will skip the bootstrapping phase bootstrap_from_trusted_peers: false p2p: public_address: \"/ip4/X.X.X.X/tcp/Y\" # This should match your public IP address (X) and port number (Y) #listen: 0.0.0.0:Y topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool allow_private_addresses: false max_connections: 256 max_client_connections: 192 gossip_interval: 10s max_bootstrap_attempts: # Default is not set trusted_peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 - address: \"/ip4/3.124.132.123/tcp/3000\" id: 431214988b71f3da55a342977fea1f3d8cba460d031a839c - address: \"/ip4/18.184.181.30/tcp/3000\" id: e9cf7b29019e30d01a658abd32403db85269fe907819949d - address: \"/ip4/184.169.162.15/tcp/3000\" id: acaba9c8c4d8ca68ac8bad5fe9bd3a1ae8de13816f40697c - address: \"/ip4/13.56.87.134/tcp/3000\" id: bcfc82c9660e28d4dcb4d1c8a390350b18d04496c2ac8474 policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 rest: listen: 127.0.0.1:3100 storage: \"./storage\" explorer: enabled: false mempool: pool_max_entries: 100000 log_max_entries: 100000 leadership: logs_capacity: 1024 no_blockchain_updates_warning_interval: 15m Note: The node configuration uses the YAML format.","breadcrumbs":"Core Ledger » Configuration » Configuration » Node Configuration","id":"59","title":"Node Configuration"},"6":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain concepts","id":"6","title":"Blockchain concepts"},"60":{"body":"","breadcrumbs":"Core Ledger » Configuration » Configuration » Advanced","id":"60","title":"Advanced"},"61":{"body":"Starting the node jormungandr with the command line option --rewards-report-all will collect a thorough report of all the reward distribution. It can then be accessed via the REST endpoints /api/v0/rewards/history/1 or /api/v0/rewards/epoch/10. this is not a recommended setting as it may take memory and may trigger some latency .","breadcrumbs":"Core Ledger » Configuration » Configuration » Rewards report","id":"61","title":"Rewards report"},"62":{"body":"By default we allow a single transaction to delay a block by 50 slots. This can be changed by adjusting the block_hard_deadline setting. The following is deprecated and will be removed If you want to record the reward distributions in a directory it is possible to set the environment variable: JORMUNGANDR_REWARD_DUMP_DIRECTORY=/PATH/TO/DIR/TO/WRITE/REWARD. If an error occurs while dumping the reward, the node will panic with an appropriate error message.","breadcrumbs":"Core Ledger » Configuration » Configuration » Handling of time-consuming transactions","id":"62","title":"Handling of time-consuming transactions"},"63":{"body":"The leadership field in your node config file is not mandatory, by default it is set as follow: leadership: logs_capacity: 1024 logs_capacity: the maximum number of logs to keep in memory. Once the capacity is reached, older logs will be removed in order to leave more space for new ones [default: 1024] Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Leadership » Leadership","id":"63","title":"Leadership"},"64":{"body":"The following options are available in the log section: level: log messages minimum severity. If not configured anywhere, defaults to info. Possible values: off, critical, error, warn, info, debug, trace format: Log output format, plain or json output: Log output destination (multiple destinations are supported). Possible values are: stdout: standard output stderr: standard error journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages file: path to the log file","breadcrumbs":"Core Ledger » Configuration » Logging » Logging","id":"64","title":"Logging"},"65":{"body":"A single configurable backend is supported.","breadcrumbs":"Core Ledger » Configuration » Logging » Example","id":"65","title":"Example"},"66":{"body":"log: output: stdout level: trace format: plain","breadcrumbs":"Core Ledger » Configuration » Logging » Output to stdout","id":"66","title":"Output to stdout"},"67":{"body":"log: output: file: example.log level: info format: json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Logging » Output to a file","id":"67","title":"Output to a file"},"68":{"body":"When running an active node (BFT leader or stake pool) it is interesting to be able to make choices on how to manage the pending transactions: how long to keep them, how to prioritize them etc. The mempool field in your node config file is not mandatory, by default it is set as follow: mempool: pool_max_entries: 10000 log_max_entries: 100000 pool_max_entries: (optional, default is 10000). Set a maximum size of the mempool log_max_entries: (optional, default is 100000). Set a maximum size of fragment logs persistent_log: (optional, disabled by default) log all incoming fragments to log files, rotated on a hourly basis. The value is an object, with the dir field specifying the directory name where log files are stored.","breadcrumbs":"Core Ledger » Configuration » Mempool » Mempool","id":"68","title":"Mempool"},"69":{"body":"A persistent log is a collection of records comprised of a UNIX timestamp of when a fragment was registereed by the mempool followed by the hex-encoded fragment body. This log is a line-delimited JSON stream. Keep in mind that enabling persistent logs could result in impaired performance of the node if disk operations are slow. Consider using a reasonably fast ssd for best results. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Mempool » Persistent logs","id":"69","title":"Persistent logs"},"7":{"body":"Slots represent the basic unit of time in the blockchain, and at each slot a block could be present. Consecutive slots are grouped into epochs, which have updatable size defined by the protocol.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Time","id":"7","title":"Time"},"70":{"body":"There are 2 different network interfaces which are covered by their respective section: rest: ...\np2p: ...","breadcrumbs":"Core Ledger » Configuration » Node network » Node network","id":"70","title":"Node network"},"71":{"body":"listen: listen address tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin, note that an origin should include a scheme, for example: http://127.0.0.1:8080. max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled","breadcrumbs":"Core Ledger » Configuration » Node network » REST interface configuration","id":"71","title":"REST interface configuration"},"72":{"body":"In order to enable TLS there must be provided certificate and private key files. jcli TLS requirements Note that jormungandr itself does not have any specific requirements for TLS certificates and you may give whatever you want including self-signed certificates as long as you do not intend to use jcli. The cryptography standards used by jcli as well as by all modern browsers and many http clients place the following requirements on certificates: A certificate should adhere to X.509 v3 with appropriate key usage settings and subject alternative name. A certificate must not be self-signed. Given that, your options are to either get a certificate from a well-known CA (Let’s Encrypt will do, jcli uses Mozilla’s CA bundle for verification) or create your own local CA and provide the root certificate to jcli via the --tls-cert-path option. Creating a local CA using OpenSSL and EasyRSA EasyRSA is a set of scripts that use OpenSSL and give you an easier experience with setting up your local CA. You can download them here . Go to easy-rsa/easy-rsa3. Configure your CA. To do that, create the configuration file (cp vars.example vars); open it with the text editor of your choise (for example, vim vars); uncomment and edit fields you need to change. Each CA needs to edit these lines (find then in your vars file according to their organization structure: #set_var.EASYRSA_REQ_COUNTRY––“US” #set_var.EASYRSA_REQ_PROVINCE—“California” #set_var.EASYRSA_REQ_CITY—“San.Francisco” #set_var.EASYRSA_REQ_ORG––“Copyleft.Certificate.Co” #set_var.EASYRSA_REQ_EMAIL–“me@example.net” #set_var.EASYRSA_REQ_OU—–“My.Organizational.Unit” When your configuration is ready, run ./easyrsa init-pki and ./easyrsa build-ca nopass. You will be prompted to set the name of your CA. Run ./easyrsa gen-req server nopass to create a new private key and a certificate signing request. You will be prompted to enter the host name (localhost for local testing). Run ./easyrsa sign-req server server to sign the request. To use the generated certificate, use it and the corresponding key in your jormungandr config: rest: tls: cert_file: priv_key_file: Use the CA certificate with jcli.","breadcrumbs":"Core Ledger » Configuration » Node network » Configuring TLS","id":"72","title":"Configuring TLS"},"73":{"body":"trusted_peers: (optional) the list of nodes’ multiaddr to connect to in order to bootstrap the p2p topology (and bootstrap our local blockchain). Note that you can use a DNS name in the following format: /dns4/node.example.com/tcp/3000. Use dns6 instead of dns4 if you want the peer to connect with IPv6. public_address: multiaddr the address to listen from and accept connection from. This is the public address that will be distributed to other peers of the network that may find interest into participating to the blockchain dissemination with the node. Currently only TCP is supported. node_key_file: (optional) Path to a file containing a bech32-encoded ed25519 secret key. The keys are used to advertize the node in network gossip and to authenticate a connection to the node if the node is used as a trusted peer. Most of the users don’t need to set this value as the key will be randomly generated if the option is not present. listen: (optional) socket address (IP address and port separated by a comma), specifies the interface address and port the node will listen at to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: (optional) the different topics we are interested to hear about: messages: notify other peers this node is interested about Transactions typical setting for a non mining node: \"low\". For a stakepool: \"high\"; blocks: notify other peers this node is interested about new Blocks. typical settings for a non mining node: \"normal\". For a stakepool: \"high\". max_connections: the maximum number of P2P connections this node should maintain. If not specified, an internal limit is used by default [default: 256] max_client_connections: the maximum number of client P2P connections this node should keep open. [default: 192] policy: (optional) set the setting for the policy module quarantine_duration set the time to leave a node in quarantine before allowing it back (or not) into the fold. It is recommended to leave the default value [default: 30min]. quarantine_whitelist set a trusted list of peers that will not be quarantined in any circumstance. It should be a list of valid addresses, for example: [\"/ip4/127.0.0.1/tcp/3000\"]. By default this list is empty, [default: []]. layers: (optional) set the settings for some of the poldercast custom layers (see below) gossip_interval: (optional) interval to start gossiping with new nodes, changing the value will affect the bandwidth. The more often the node will gossip the more bandwidth the node will need. The less often the node gossips the less good the resilience to node churn. [default: 10s] network-stuck_check: (optional) If no gossip has been received in the last interval, try to connect to nodes that were previously known to this node. This helps to rejoin the protocol in case there is a network outage and the node cannot reach any other peer. [default: 5min] max_bootstrap_attempts: (optional) number of times to retry bootstrapping from trusted peers. If not set, default behavior, the bootstrap process will keep retrying indefinitely, until completed successfully. If set to 0 (zero), the node will skip bootstrap all together – even if trusted peers are defined . If the node fails to bootstrap from any of the trusted peers and the number of bootstrap retry attempts is exceeded, then the node will continue to run without completing the bootstrap process. This will allow the node to act as the first node in the p2p network (i.e. genesis node), or immediately begin gossip with the trusted peers if any are defined.","breadcrumbs":"Core Ledger » Configuration » Node network » P2P configuration","id":"73","title":"P2P configuration"},"74":{"body":"The trusted peers is a concept that is not fully implemented yet. One of the key element for now is that this is the first node any node tries to connect in order to meet new nodes. Right now, as far as we know, only one of them is needed. IOHK provides a few others for redundancy.","breadcrumbs":"Core Ledger » Configuration » Node network » The trusted peers","id":"74","title":"The trusted peers"},"75":{"body":"Jörmungandr provides multiple additional layers to the poldercast default ones: the preferred list or the bottle in the sea. Preferred list This is a special list that allows to connect multiple nodes together without relying on the auto peer discovery. All entries in the preferred list are also whitelisted automatically, so they cannot be quarantined. configuration view_max: this is the number of entries to show in the view each round the layer will randomly select up to view_max entries from the whole preferred_list.peers list of entries. [default: 20] peers: the list of peers to keep in the preferred list [default: EMPTY] Also, the preferred list will never be quarantined or blacklisted, the node will attempt to connect to (up to view_max of) these nodes every time, even if some are down, unreachable or not operated anymore. COMPATIBILITY NOTE : in near future the peer list will be only a list of addresses and the ID part will not be necessary. Example p2p: layers: preferred_list: view_max: 20 peers: - address: '/ip4/127.0.0.1/tcp/2029' id: 019abc... - ...","breadcrumbs":"Core Ledger » Configuration » Node network » Layers","id":"75","title":"Layers"},"76":{"body":"This is needed to advertise your node as a trusted peer. If not set, the node will generate a random ID, which is fine for a regular user. You can generate a public id with openssl , for example: openssl rand -hex 24","breadcrumbs":"Core Ledger » Configuration » Node network » Setting the public_id","id":"76","title":"Setting the public_id"},"77":{"body":"This is an optional value to set. The default is: messages: low\nblocks: normal These values make sense for most of the users that are not running stake pools or that are not even publicly reachable. However for a publicly reachable node, the recommended settings would be: messages: normal\nblocks: normal and for a stake pool: messages: high\nblocks: high Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Node network » topics_of_interest","id":"77","title":"topics_of_interest"},"78":{"body":"","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prometheus","id":"78","title":"Prometheus"},"79":{"body":"To use Prometheus you need Jormungandr compiled with the prometheus-metrics feature enabled.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prerequisites","id":"79","title":"Prerequisites"},"8":{"body":"Fragments are part of the blockchain data that represent all the possible events related to the blockchain health (e.g. update to the protocol), but also and mainly the general recording of information like transactions and certificates.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Fragments","id":"8","title":"Fragments"},"80":{"body":"To enable Prometheus endpoint you need to enable it in the configuration file: prometheus: enabled: true Alternatively, you can use the --prometheus-metrics flag. When enabled, the Prometheus endpoint is exposed as http(s)://:/prometheus. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Usage","id":"80","title":"Usage"},"81":{"body":"This is the node command line helper. It is mostly meant for developers and stake pool operators. It allows offline operations: generating cryptographic materials for the wallets and stake pools; creating addresses, transactions and certificates; prepare a new blockchain and it allows simple interactions with the node: query stats; send transactions and certificates; get raw blocks and UTxOs.","breadcrumbs":"Core Ledger » jcli » jcli » jcli","id":"81","title":"jcli"},"82":{"body":"Jormungandr comes with a separate CLI to create and manipulate addresses. This is useful for creating addresses from their components in the CLI, for debugging addresses and for testing.","breadcrumbs":"Core Ledger » jcli » Address » Address","id":"82","title":"Address"},"83":{"body":"To display an address and verify it is in a valid format you can utilise: $ jcli address info ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0\ndiscrimination: testing\npublic key: ed25519e_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx or for example: $ jcli address \\ info \\ ca1qsy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxz8ah8dldkhvwfghn77se8dp76uguavzyxh5cccek9epryr7mkkr8n7kgx\ndiscrimination: production\npublic key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx\ngroup key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx","breadcrumbs":"Core Ledger » jcli » Address » Display address info","id":"83","title":"Display address info"},"84":{"body":"Each command following allows to create addresses for production and testing chains. For chains, where the discrimination is testing, you need to use the --testing flag. There’s 3 types of addresses: Single address : A simple spending key. This doesn’t have any stake in the system Grouped address : A spending key attached to an account key. The stake is automatically Account address : An account key. The account is its own stake","breadcrumbs":"Core Ledger » jcli » Address » Creating an address","id":"84","title":"Creating an address"},"85":{"body":"You can create a single address (non-staked) using the spending public key for this address utilising the following command: $ jcli address \\ single ed25519e_pk1jnlhwdgzv3c9frknyv7twsv82su26qm30yfpdmvkzyjsdgw80mfqduaean\nca1qw207ae4qfj8q4yw6v3ned6psa2r3tgrw9u3y9hdjcgj2p4pcaldyukyka8 To add the staking information and make a group address, simply add the account public key as a second parameter of the command: $ jcli address \\ single \\ ed25519_pk1fxvudq6j7mfxvgk986t5f3f258sdtw89v4n3kr0fm6mpe4apxl4q0vhp3k \\ ed25519_pk1as03wxmy2426ceh8nurplvjmauwpwlcz7ycwj7xtl9gmx9u5gkqscc5ylx\nca1q3yen35r2tmdye3zc5lfw3x992s7p4dcu4jkwxcda80tv8xh5ym74mqlzudkg42443nw08cxr7e9hmcuzals9ufsa9uvh723kvteg3vpvrcxcq","breadcrumbs":"Core Ledger » jcli » Address » Address for UTxO","id":"85","title":"Address for UTxO"},"86":{"body":"To create an account address you need the account public key and run: $ jcli address \\ account ed25519_pk1c4yq3hflulynn8fef0hdq92579n3c49qxljasrl9dnuvcksk84gs9sqvc2\nca1qhz5szxa8lnujwva8997a5q42nckw8z55qm7tkq0u4k03nz6zc74ze780qe","breadcrumbs":"Core Ledger » jcli » Address » Address for Account","id":"86","title":"Address for Account"},"87":{"body":"You can decide to change the address prefix, allowing you to provide more enriched data to the user. However, this prefix is not forwarded to the node, it is only for UI/UX. $ jcli address \\ account \\ --prefix=address_ \\ ed25519_pk1yx6q8rsndawfx8hjzwntfs2h2c37v5g6edv67hmcxvrmxfjdz9wqeejchg\naddress_1q5smgquwzdh4eyc77gf6ddxp2atz8ej3rt94nt6l0qes0vexf5g4cw68kdx Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Address » changing the address prefix","id":"87","title":"changing the address prefix"},"88":{"body":"Tooling for offline transaction creation","breadcrumbs":"Core Ledger » jcli » Certificate » Certificate","id":"88","title":"Certificate"},"89":{"body":"Builds a stake pool registration certificate. jcli certificate new stake-pool-registration \\ --vrf-key \\ --kes-key \\ --start-validity \\ --management-threshold \\ --owner \\ [--operator ] \\ [] Where: --operator - optional , public key of the operator(s) of the pool. output-file - optional , write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool registration certificate","id":"89","title":"Building stake pool registration certificate"},"9":{"body":"Blocks represent the spine of the blockchain, safely and securely linking blocks in a chain, whilst grouping valid fragments together. Blocks are composed of 2 parts: The header The content The header link the content with the blocks securely together, while the content is effectively a sequence of fragments.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blocks","id":"9","title":"Blocks"},"90":{"body":"It is possible to retire a stake pool from the blockchain. By doing so the stake delegated to the stake pool will become dangling and will need to be re-delegated. Remember though that the action won’t be applied until the next following epoch. I.e. the certificate will take a whole epoch before being applied, this should leave time for stakers to redistribute their stake to other pools before having their stake becoming dangling. It might be valuable for a stake pool operator to keep the stake pool running until the stake pool retirement certificate is fully applied in order to not miss any potential rewards. example: jcli certificate new stake-pool-retirement \\ --pool-id \\ --retirement-time \\ [] where: output-file - optional , write the output to the given file or print it to the standard output if not defined. --retirement-time - is the number of seconds since the start in order to make the stake pool retire. 0 means as soon as possible. --pool-id - hex-encoded stake pool ID. Can be retrieved using jcli certificate get-stake-pool-id command. See here for more details.","breadcrumbs":"Core Ledger » jcli » Certificate » Retiring a stake pool","id":"90","title":"Retiring a stake pool"},"91":{"body":"Builds a stake pool delegation certificate. jcli certificate new stake-delegation [--output ] Where: -o, --output - optional , write the output to the given file or print it to the standard output if not defined - the public key used in the stake key registration ... - hex-encoded stake pool IDs and their numeric weights in format “pool_id:weight” . If weight is not provided, it defaults to 1 .","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool delegation certificate","id":"91","title":"Building stake pool delegation certificate"},"92":{"body":"Builds an update proposal certificate. jcli certificate new update-proposal \\ \\ \\ [] Where: - the proposer ID, public key of the one who will sign this certificate - optional , the file path to the config file defining the config param changes. If omitted it will be read from the standard input. output-file - optional , write the output to the given file or print it to the standard output if not defined For example your config file may look like: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch\n- Block0Date: 17 # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' otherwise use 'test'.\n- Discrimination: test # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis\n- ConsensusVersion: bft # Number of slots in each epoch.\n- SlotsPerEpoch: 42 # The slot duration, in seconds, is the time between the creation # of 2 blocks\n- SlotDuration: 79 # Epoch stability depth\n- EpochStabilityDepth: 12 # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1]\n- ConsensusGenesisPraosActiveSlotsCoeff: \"0.004\" # This is the size, in bytes, of all the contents of the block (excluding the # block header).\n- BlockContentMaxSize: 96 # Add a new bft leader\n- AddBftLeader: ed25519_pk1g53asm6l4gcwk2pm5ylr092umaur5yes47rqv7ng5yl525x8g8mq5nk7x7 # Remove a bft leader\n- RemoveBftLeader: ed25519_pk1a3sjcg6gt4d05k5u6uqyzmsap8cjw37ul9cgztz8m697lvkz26uqg49nm3 # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate]\n- LinearFee: # this is the minimum value to pay for every transaction constant: 57 # the additional fee to pay for every inputs and outputs coefficient: 14 # the additional fee to pay if the transaction embeds a certificate certificate: 95 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Proposal expiration in epochs\n- ProposalExpiration: 68 # The speed to update the KES Key in seconds\n- KesUpdateSpeed: 120 # Increase the treasury amount\n- TreasuryAdd: 10000 # Set the total reward supply available for monetary creation\n- RewardPot: 100000000000000 # Set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document\n- TreasuryParams: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # it is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: max_limit: 10000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate)\n- RewardParams: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 2 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: 3/68 # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 89 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 20 # Fees for different types of certificates, to override the one # given in `certificate` just above.\n- PerCertificateFees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Set where to send the fees generated by transactions activity. # # It is possible to send all the generated fees to the \"treasury\"\n- FeesInTreasury: rewards - RewardLimitNone # Limit the epoch total reward drawing limit to a portion of the total # active stake of the system. # # for example, if set to 10%, the reward drawn will be bounded by the # 10% of the total active stake.\n- RewardLimitByAbsoluteStake: 22/72 # Settings to incentivize the numbers of stake pool to be registered # on the blockchain. # # These settings does not prevent more stake pool to be added. For example # if there is already 1000 stake pools, someone can still register a new # stake pool and affect the rewards of everyone else too. # # if the threshold is reached, the pool doesn't really have incentive to # create more blocks than 1 / set-value-of-pools % of stake.\n- PoolRewardParticipationCapping: min: 8 max: 52 # Add a new committee id\n- AddCommitteeId: 8103973beaa56f4e9440004ee8e8f8359ea18499d4199c1b018c072e7f503ea0 # Remove a committee id\n- RemoveCommitteeId: 6375dcdd714e69c197e99c32486ec28f166a50da7a1e3694807cd8a76f1c8175 - PerVoteCertificateFees: certificate_vote_plan: 52 certificate_vote_cast: 57 # The transaction max expiry epochs\n- TransactionMaxExpiryEpochs: 91","breadcrumbs":"Core Ledger » jcli » Certificate » Building update proposal certificate","id":"92","title":"Building update proposal certificate"},"93":{"body":"Builds a vote cast certificate.","breadcrumbs":"Core Ledger » jcli » Certificate » Building vote cast certificate","id":"93","title":"Building vote cast certificate"},"94":{"body":"jcli certificate new update-cast public \\ --choice \\ --proposal-index \\ --vote-plan-id \\ --output Where: - the number of choice within the proposal you vote for - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Public vote cast","id":"94","title":"Public vote cast"},"95":{"body":"jcli certificate new update-cast private \\ --choice \\ --options-size \\ --proposal-index \\ --vote-plan-id \\ --key-path --output Where: - the number of choice within the proposal you vote for - size of voting options - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional key to encrypt the vote with, if not provided read secret key from the stdit - optional write the output to the given file or print it to the standard output if not defined Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Certificate » Private vote cast","id":"95","title":"Private vote cast"},"96":{"body":"Tooling for working with a genesis file","breadcrumbs":"Core Ledger » jcli » Genesis » Genesis","id":"96","title":"Genesis"},"97":{"body":"jcli genesis [subcommand]","breadcrumbs":"Core Ledger » jcli » Genesis » Usage","id":"97","title":"Usage"},"98":{"body":"decode: Print the YAML file corresponding to an encoded genesis block. encode: Create the genesis block of the blockchain from a given yaml file. hash: Print the block hash of the genesis init: Create a default Genesis file with appropriate documentation to help creating the YAML file help","breadcrumbs":"Core Ledger » jcli » Genesis » Subcommands","id":"98","title":"Subcommands"},"99":{"body":"","breadcrumbs":"Core Ledger » jcli » Genesis » Examples","id":"99","title":"Examples"}},"length":511,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.6457513110645907}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.0},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.1622776601683795},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.1622776601683795},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":16,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"11":{"tf":1.0},"173":{"tf":1.4142135623730951},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":80,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.4142135623730951},"318":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.7320508075688772},"341":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.23606797749979},"278":{"tf":1.0},"303":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":12,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.0},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":82,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"458":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":2.0},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":3.605551275463989},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.242640687119285},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"248":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"320":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"331":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":2.0},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"289":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":1.7320508075688772},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.0},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":44,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.0},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"340":{"tf":2.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"361":{"tf":1.0},"392":{"tf":1.7320508075688772},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.7320508075688772},"339":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.0},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":43,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":53,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"40":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.0},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":73,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"367":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.7320508075688772},"397":{"tf":2.0},"399":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.449489742783178},"485":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"473":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":18,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.4641016151377544}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"496":{"tf":1.0},"507":{"tf":1.0}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":2.0},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":13,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.0},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"432":{"tf":2.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.7320508075688772},"444":{"tf":2.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":73,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.8284271247461903},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":3.3166247903554},"377":{"tf":3.1622776601683795},"378":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.7320508075688772},"439":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.0},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":26,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.0},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.6457513110645907},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"432":{"tf":1.0}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.0},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"485":{"tf":1.0},"491":{"tf":2.8284271247461903},"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.4641016151377544},"126":{"tf":2.23606797749979},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.4641016151377544},"476":{"tf":3.3166247903554},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"47":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"480":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.0},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":2.0},"276":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":2.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":2.23606797749979},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":53,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.7320508075688772},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":2.8284271247461903},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"189":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.449489742783178},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":13,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":1.4142135623730951},"3":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.4142135623730951},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"484":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.4142135623730951},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.7320508075688772},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.23606797749979},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":25,"docs":{"196":{"tf":1.0},"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.0}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.0},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"191":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"196":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":3.3166247903554},"151":{"tf":3.605551275463989},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":61,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.099504938362077},"450":{"tf":34.55430508634199},"451":{"tf":2.0},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.449489742783178},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"11":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"119":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":11,"docs":{"174":{"tf":1.4142135623730951},"228":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"3":{"tf":1.0},"422":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":16,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":16,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"299":{"tf":4.0},"300":{"tf":1.4142135623730951},"301":{"tf":2.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":25,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"232":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":1.7320508075688772},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.0},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":3.7416573867739413},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"407":{"tf":1.0},"462":{"tf":1.7320508075688772},"50":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":72,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":125,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.7416573867739413},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":2.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.23606797749979},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":2.6457513110645907},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":5.291502622129181},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"16":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"36":{"tf":1.0},"446":{"tf":1.0},"458":{"tf":1.4142135623730951},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.4142135623730951},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"422":{"tf":1.0},"426":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":3.3166247903554},"191":{"tf":2.23606797749979},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":3.1622776601683795},"124":{"tf":3.1622776601683795},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.605551275463989},"91":{"tf":1.7320508075688772},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.23606797749979},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"118":{"tf":1.4142135623730951},"153":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":51,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.6457513110645907},"436":{"tf":3.0},"437":{"tf":3.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":2.8284271247461903},"501":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.358898943540674},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":76,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"153":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.1622776601683795},"126":{"tf":2.23606797749979},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":13,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":2.6457513110645907},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.23606797749979},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":66,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"334":{"tf":2.449489742783178},"335":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":1.7320508075688772},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":6.244997998398398},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"479":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.0},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":36,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.6457513110645907},"346":{"tf":1.0},"347":{"tf":2.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":1,"docs":{"391":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":19,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.0},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":74,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":4.242640687119285},"124":{"tf":2.449489742783178},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.449489742783178},"157":{"tf":2.0},"160":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":3.605551275463989},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":2.6457513110645907},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"321":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"332":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":2.449489742783178},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"443":{"tf":2.0},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":3.605551275463989},"91":{"tf":2.23606797749979},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":79,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":2.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":1.7320508075688772},"410":{"tf":1.0},"412":{"tf":1.0},"439":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.0},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":1.4142135623730951},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.1622776601683795}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.242640687119285},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":69,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":2.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.6457513110645907},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":2.0},"289":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":2.6457513110645907},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"310":{"tf":2.0},"311":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":4.0},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":66,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":3.872983346207417},"130":{"tf":4.69041575982343},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"200":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":1.7320508075688772},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"216":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"418":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":36,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.0},"346":{"tf":1.7320508075688772},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"379":{"tf":1.0},"386":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":34,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"391":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":19,"docs":{"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":58,"docs":{"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"147":{"tf":3.0},"148":{"tf":2.0},"149":{"tf":4.69041575982343},"151":{"tf":4.795831523312719},"152":{"tf":3.872983346207417},"174":{"tf":1.0},"191":{"tf":3.3166247903554},"196":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":3.605551275463989},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.8284271247461903},"95":{"tf":3.1622776601683795}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.449489742783178},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"477":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.0},"142":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":22,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"287":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.23606797749979},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.8284271247461903}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.23606797749979},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.3166247903554},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.0},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.3166247903554},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":3.0},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":2.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":18,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.449489742783178},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.449489742783178},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":43,"docs":{"11":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":95,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":4.123105625617661},"449":{"tf":6.6332495807108},"450":{"tf":22.956480566497994},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":4.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":2.0},"478":{"tf":2.0},"479":{"tf":2.0},"480":{"tf":2.0},"481":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":2.0},"49":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.449489742783178},"278":{"tf":1.0},"303":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.23606797749979},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":14,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":2.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":2.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":20,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":101,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.6457513110645907},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"458":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":3.7416573867739413},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.7320508075688772},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":10,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.358898943540674},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":2.0},"239":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":2.0},"265":{"tf":2.0},"268":{"tf":1.0},"271":{"tf":2.0},"290":{"tf":2.0},"293":{"tf":1.0},"297":{"tf":2.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":2.0},"320":{"tf":2.0},"325":{"tf":2.0},"331":{"tf":2.0},"336":{"tf":2.0},"343":{"tf":2.0},"348":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"362":{"tf":2.23606797749979},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":146,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":2.0},"307":{"tf":2.0},"413":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.23606797749979},"167":{"tf":2.23606797749979},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"91":{"tf":2.23606797749979},"92":{"tf":4.58257569495584},"93":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.7320508075688772},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":2.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":47,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.7320508075688772},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.7320508075688772},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.23606797749979},"318":{"tf":1.0},"319":{"tf":2.23606797749979},"320":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"330":{"tf":2.23606797749979},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"342":{"tf":2.23606797749979},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"361":{"tf":1.0},"392":{"tf":2.0},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":2.0},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.7320508075688772},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":48,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":2.0},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"301":{"tf":2.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.0},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.7320508075688772},"394":{"tf":1.0},"40":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":2.0},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.23606797749979},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"7":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.7320508075688772},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":115,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":2.0},"294":{"tf":2.0},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":2.0},"326":{"tf":1.0},"334":{"tf":2.0},"337":{"tf":1.0},"346":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.7320508075688772},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.0},"397":{"tf":2.449489742783178},"398":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":2.449489742783178},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.7320508075688772},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.8284271247461903},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.7320508075688772},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"473":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.7320508075688772},"71":{"tf":2.0}},"e":{"df":318,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"45":{"tf":1.0},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":12,"docs":{"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":15,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":2.449489742783178},"431":{"tf":2.0},"432":{"tf":2.449489742783178},"433":{"tf":2.449489742783178},"434":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":2.6457513110645907},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":86,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":3.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":3.4641016151377544},"377":{"tf":3.3166247903554},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"434":{"tf":2.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.7320508075688772},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":27,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.1622776601683795},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.8284271247461903},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.4142135623730951},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":14,"docs":{"216":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"432":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.7320508075688772},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.23606797749979},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"485":{"tf":1.0},"491":{"tf":3.0},"508":{"tf":2.0},"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":2.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.605551275463989},"126":{"tf":2.449489742783178},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":2.0},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.605551275463989},"476":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"376":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":2.23606797749979},"509":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.7320508075688772},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"393":{"tf":2.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"480":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.1622776601683795},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":2.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.4142135623730951},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":2.0}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":3.0},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":42,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"391":{"tf":1.0},"417":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"391":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":97,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":3.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":45,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":2.0},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.605551275463989},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":2.0},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":144,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.7320508075688772},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":2.0},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"232":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":2.0},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.449489742783178},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":2.0},"126":{"tf":2.449489742783178},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"288":{"tf":2.0},"289":{"tf":2.23606797749979},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.8284271247461903},"293":{"tf":1.7320508075688772},"294":{"tf":2.0},"295":{"tf":2.0},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.23606797749979},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"247":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"336":{"tf":1.0},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":33,"docs":{"196":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"287":{"tf":1.0},"302":{"tf":2.449489742783178},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"417":{"tf":1.0},"424":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.1622776601683795}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}},"df":15,"docs":{"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":16,"docs":{"196":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":2.449489742783178},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.7320508075688772},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":107,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":3.4641016151377544},"150":{"tf":1.0},"151":{"tf":3.7416573867739413},"152":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":97,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.14889156509222},"450":{"tf":34.55430508634199},"451":{"tf":2.23606797749979},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":29,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":2.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.8284271247461903},"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":2.23606797749979},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":2.0},"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.23606797749979}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":288,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.449489742783178},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.4142135623730951},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":20,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.4641016151377544},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":4.123105625617661},"300":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":26,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"120":{"tf":2.0},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"232":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":2.0},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":2.0},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"508":{"tf":2.0},"509":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":2.0},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"232":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":18,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":2.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":3.872983346207417},"392":{"tf":1.4142135623730951},"393":{"tf":2.6457513110645907},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":2.0},"399":{"tf":2.449489742783178},"400":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.7320508075688772}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":88,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":2.0},"141":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.23606797749979},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.872983346207417},"11":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"374":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.6457513110645907},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":3.0},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":3.3166247903554},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":5.385164807134504},"74":{"tf":2.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":39,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":2.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"36":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":2.0},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.7320508075688772},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.7320508075688772},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"422":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":26,"docs":{"128":{"tf":2.0},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":3.4641016151377544},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":31,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":2.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":2.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.6457513110645907},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":50,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":3.1622776601683795},"124":{"tf":3.3166247903554},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.6457513110645907},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.7416573867739413},"91":{"tf":2.0},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":2.0},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.449489742783178},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":22,"docs":{"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"118":{"tf":1.7320508075688772},"153":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":56,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.449489742783178},"320":{"tf":1.7320508075688772},"321":{"tf":2.0},"322":{"tf":2.6457513110645907},"323":{"tf":2.449489742783178},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.449489742783178},"331":{"tf":2.0},"332":{"tf":2.0},"333":{"tf":2.6457513110645907},"334":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.8284271247461903},"435":{"tf":1.0},"436":{"tf":3.3166247903554},"437":{"tf":3.3166247903554},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":3.0},"501":{"tf":1.4142135623730951},"61":{"tf":2.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.358898943540674},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.23606797749979},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":77,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":3.0},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":2.6457513110645907},"172":{"tf":1.7320508075688772},"90":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":35,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":3.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.4142135623730951},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"45":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":79,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":2.0},"334":{"tf":2.6457513110645907},"335":{"tf":2.449489742783178},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":2.8284271247461903},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":2.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":6.244997998398398},"456":{"tf":2.0},"457":{"tf":2.0},"47":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":2.0},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":2.0},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":42,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":2.8284271247461903},"346":{"tf":1.4142135623730951},"347":{"tf":2.6457513110645907},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":2.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.23606797749979},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":1,"docs":{"391":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":42,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.1622776601683795},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":81,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":4.358898943540674},"124":{"tf":2.6457513110645907},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.8284271247461903},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.8284271247461903},"157":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":2.8284271247461903},"168":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"170":{"tf":2.449489742783178},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.449489742783178},"188":{"tf":3.7416573867739413},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":3.0},"318":{"tf":1.0},"32":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"33":{"tf":2.8284271247461903},"332":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"35":{"tf":2.8284271247461903},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.0},"443":{"tf":2.449489742783178},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.7416573867739413},"91":{"tf":2.449489742783178},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":87,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":2.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":2.0},"123":{"tf":2.0},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":2.0},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":21,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":2.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.358898943540674},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.8284271247461903},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":196,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"237":{"tf":2.449489742783178},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.8284271247461903},"245":{"tf":3.1622776601683795},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.449489742783178},"249":{"tf":2.6457513110645907},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":2.449489742783178},"254":{"tf":2.449489742783178},"255":{"tf":2.449489742783178},"256":{"tf":2.449489742783178},"257":{"tf":2.449489742783178},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":3.0},"303":{"tf":3.3166247903554},"304":{"tf":1.7320508075688772},"305":{"tf":2.23606797749979},"306":{"tf":2.6457513110645907},"307":{"tf":2.8284271247461903},"308":{"tf":2.6457513110645907},"309":{"tf":2.8284271247461903},"310":{"tf":2.8284271247461903},"311":{"tf":2.8284271247461903},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":2.6457513110645907},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"415":{"tf":2.23606797749979},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":4.123105625617661},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"258":{"tf":1.0},"309":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"232":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.6457513110645907},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":2.0},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":32,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":79,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":4.123105625617661},"130":{"tf":4.898979485566356},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":2.6457513110645907},"140":{"tf":1.7320508075688772},"141":{"tf":3.4641016151377544},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"144":{"tf":2.8284271247461903},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":2.0},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"216":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":2.0},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.449489742783178},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":27,"docs":{"418":{"tf":2.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.23606797749979},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":144,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.449489742783178},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":34,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"391":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":2.23606797749979},"357":{"tf":1.7320508075688772},"358":{"tf":2.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":2.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":48,"docs":{"361":{"tf":2.23606797749979},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":73,"docs":{"127":{"tf":2.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"147":{"tf":3.1622776601683795},"148":{"tf":2.449489742783178},"149":{"tf":4.898979485566356},"150":{"tf":1.0},"151":{"tf":5.0},"152":{"tf":4.123105625617661},"174":{"tf":1.0},"191":{"tf":3.872983346207417},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.4142135623730951},"373":{"tf":3.7416573867739413},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":3.0},"95":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.8284271247461903},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":9,"docs":{"459":{"tf":1.0},"474":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.1622776601683795},"142":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":35,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"287":{"tf":1.0},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":2.23606797749979},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"title":{"root":{"0":{"df":2,"docs":{"181":{"tf":1.0},"280":{"tf":1.0}}},"1":{"df":1,"docs":{"503":{"tf":1.0}}},"2":{"df":1,"docs":{"504":{"tf":1.0}}},"3":{"df":1,"docs":{"505":{"tf":1.0}}},"4":{"df":1,"docs":{"506":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"32":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"d":{"a":{"df":3,"docs":{"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}},"d":{"df":4,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"391":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"173":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":25,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"467":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"286":{"tf":1.0}}},"o":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"283":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"181":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"38":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"490":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"425":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"287":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":10,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"139":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"144":{"tf":1.0},"403":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"392":{"tf":1.0},"456":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.0},"316":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"471":{"tf":1.0},"474":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"495":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"217":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"486":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"241":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"385":{"tf":1.0},"485":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"496":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":4,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"484":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"462":{"tf":1.0},"467":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"39":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"376":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"213":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"448":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"35":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"432":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"396":{"tf":1.0},"446":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"399":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"499":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"491":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"403":{"tf":1.0},"404":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"475":{"tf":1.0},"476":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"393":{"tf":1.0},"480":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"381":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0}}}}}}},"d":{"df":3,"docs":{"177":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"366":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"231":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"474":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"287":{"tf":1.0},"459":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"216":{"tf":1.0},"464":{"tf":1.0},"502":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"432":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"df":2,"docs":{"380":{"tf":1.0},"428":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"113":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"493":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"176":{"tf":1.0},"186":{"tf":1.0},"368":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"424":{"tf":1.0},"450":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"407":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":1,"docs":{"191":{"tf":1.0}},"f":{"a":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"474":{"tf":1.0}}}}},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"235":{"tf":1.0},"251":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":6,"docs":{"205":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"458":{"tf":1.0}}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"y":{"df":4,"docs":{"102":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"405":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"n":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"453":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"388":{"tf":1.0},"393":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"351":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"407":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":3,"docs":{"226":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"311":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"462":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"377":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":25,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"166":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"465":{"tf":1.0},"470":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"16":{"tf":1.0},"284":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"446":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"164":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"253":{"tf":1.0},"256":{"tf":1.0},"415":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"372":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":11,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"128":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"151":{"tf":1.0},"29":{"tf":1.0},"467":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"410":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"160":{"tf":1.0}},"r":{"df":10,"docs":{"187":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"490":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"105":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"391":{"tf":1.0},"428":{"tf":1.0},"49":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":18,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"500":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"143":{"tf":1.0},"402":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"431":{"tf":1.0},"457":{"tf":1.0},"474":{"tf":1.0}}}},"i":{"c":{"df":14,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"378":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.0},"454":{"tf":1.0},"76":{"tf":1.0}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"125":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"134":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":23,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"123":{"tf":1.0}},"e":{"df":3,"docs":{"114":{"tf":1.0},"279":{"tf":1.0},"444":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"354":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}}}},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"459":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"485":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"x":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":36,"docs":{"190":{"tf":1.0},"211":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"450":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"309":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"373":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"444":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"468":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"418":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"338":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":5,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.0}}}}}},"v":{"0":{"df":4,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}}},"1":{"df":2,"docs":{"478":{"tf":1.0},"483":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.4142135623730951},"283":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"488":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"504":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"474":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["00_prologue.html#prologue","01_intro.html#introduction","01_intro.html#what-is-catalyst-core","02_core_ledger/index.html#core-ledger","02_core_ledger/index.html#mythology","02_core_ledger/01_concepts/index.html#general-concepts","02_core_ledger/01_concepts/blockchain.html#blockchain-concepts","02_core_ledger/01_concepts/blockchain.html#time","02_core_ledger/01_concepts/blockchain.html#fragments","02_core_ledger/01_concepts/blockchain.html#blocks","02_core_ledger/01_concepts/blockchain.html#blockchain","02_core_ledger/01_concepts/blockchain.html#consensus","02_core_ledger/01_concepts/blockchain.html#leadership","02_core_ledger/01_concepts/blockchain.html#leader","02_core_ledger/01_concepts/blockchain.html#transaction","02_core_ledger/01_concepts/blockchain.html#accounting","02_core_ledger/01_concepts/network.html#network-overview","02_core_ledger/01_concepts/network.html#the-protocol","02_core_ledger/01_concepts/network.html#type-of-queries","02_core_ledger/01_concepts/network.html#peer-to-peer","02_core_ledger/01_concepts/network.html#multilayered-topology","02_core_ledger/01_concepts/network.html#gossiping","02_core_ledger/01_concepts/network.html#subscription-mechanism","02_core_ledger/01_concepts/network.html#security-and-countermeasures","02_core_ledger/01_concepts/network.html#policy","02_core_ledger/01_concepts/node.html#node-organization","02_core_ledger/01_concepts/node.html#secure-enclave","02_core_ledger/01_concepts/node.html#network","02_core_ledger/01_concepts/node.html#intercommunication-api-grpc","02_core_ledger/01_concepts/node.html#public-api-rest","02_core_ledger/01_concepts/node.html#control-api-rest","02_core_ledger/01_concepts/stake.html#stake","02_core_ledger/01_concepts/stake.html#stake-in-the-account-model","02_core_ledger/01_concepts/stake.html#stake-in-the-utxo-model","02_core_ledger/01_concepts/stake.html#stake-pool","02_core_ledger/01_concepts/stake.html#stake-delegation","02_core_ledger/02_quickstart/index.html#quickstart","02_core_ledger/02_quickstart/index.html#as-a-passive-node-in-an-existing-network","02_core_ledger/02_quickstart/index.html#as-a-node-generating-blocks-in-an-existing-network","02_core_ledger/02_quickstart/index.html#creating-your-own-network","02_core_ledger/02_quickstart/01_command_line.html#command-line-tools","02_core_ledger/02_quickstart/01_command_line.html#installation","02_core_ledger/02_quickstart/01_command_line.html#from-a-release","02_core_ledger/02_quickstart/01_command_line.html#from-source","02_core_ledger/02_quickstart/01_command_line.html#help-and-auto-completion","02_core_ledger/02_quickstart/02_passive_node.html#starting-a-passive-node","02_core_ledger/02_quickstart/02_passive_node.html#the-node-configuration","02_core_ledger/02_quickstart/02_passive_node.html#note","02_core_ledger/02_quickstart/02_passive_node.html#starting-the-node","02_core_ledger/02_quickstart/03_rest_api.html#rest-api","02_core_ledger/02_quickstart/04_explorer.html#explorer-mode","02_core_ledger/02_quickstart/04_explorer.html#configuration","02_core_ledger/02_quickstart/04_explorer.html#cors","02_core_ledger/02_quickstart/04_explorer.html#api","02_core_ledger/02_quickstart/05_leader_candidate.html#how-to-start-a-node-as-a-leader-candidate","02_core_ledger/02_quickstart/05_leader_candidate.html#gathering-data","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-genesis-blockchain","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-bft-blockchain","02_core_ledger/03_configuration/index.html#configuration","02_core_ledger/03_configuration/index.html#node-configuration","02_core_ledger/03_configuration/index.html#advanced","02_core_ledger/03_configuration/index.html#rewards-report","02_core_ledger/03_configuration/index.html#handling-of-time-consuming-transactions","02_core_ledger/03_configuration/leadership.html#leadership","02_core_ledger/03_configuration/logging.html#logging","02_core_ledger/03_configuration/logging.html#example","02_core_ledger/03_configuration/logging.html#output-to-stdout","02_core_ledger/03_configuration/logging.html#output-to-a-file","02_core_ledger/03_configuration/mempool.html#mempool","02_core_ledger/03_configuration/mempool.html#persistent-logs","02_core_ledger/03_configuration/network.html#node-network","02_core_ledger/03_configuration/network.html#rest-interface-configuration","02_core_ledger/03_configuration/network.html#configuring-tls","02_core_ledger/03_configuration/network.html#p2p-configuration","02_core_ledger/03_configuration/network.html#the-trusted-peers","02_core_ledger/03_configuration/network.html#layers","02_core_ledger/03_configuration/network.html#setting-the-public_id","02_core_ledger/03_configuration/network.html#topics_of_interest","02_core_ledger/03_configuration/prometheus.html#prometheus","02_core_ledger/03_configuration/prometheus.html#prerequisites","02_core_ledger/03_configuration/prometheus.html#usage","02_core_ledger/04_jcli/index.html#jcli","02_core_ledger/04_jcli/address.html#address","02_core_ledger/04_jcli/address.html#display-address-info","02_core_ledger/04_jcli/address.html#creating-an-address","02_core_ledger/04_jcli/address.html#address-for-utxo","02_core_ledger/04_jcli/address.html#address-for-account","02_core_ledger/04_jcli/address.html#changing-the-address-prefix","02_core_ledger/04_jcli/certificate.html#certificate","02_core_ledger/04_jcli/certificate.html#building-stake-pool-registration-certificate","02_core_ledger/04_jcli/certificate.html#retiring-a-stake-pool","02_core_ledger/04_jcli/certificate.html#building-stake-pool-delegation-certificate","02_core_ledger/04_jcli/certificate.html#building-update-proposal-certificate","02_core_ledger/04_jcli/certificate.html#building-vote-cast-certificate","02_core_ledger/04_jcli/certificate.html#public-vote-cast","02_core_ledger/04_jcli/certificate.html#private-vote-cast","02_core_ledger/04_jcli/genesis.html#genesis","02_core_ledger/04_jcli/genesis.html#usage","02_core_ledger/04_jcli/genesis.html#subcommands","02_core_ledger/04_jcli/genesis.html#examples","02_core_ledger/04_jcli/genesis.html#encode-a-genesis-file","02_core_ledger/04_jcli/genesis.html#get-the-hash-of-an-encoded-genesis-file","02_core_ledger/04_jcli/key.html#cryptographic-keys","02_core_ledger/04_jcli/key.html#signing-data","02_core_ledger/04_jcli/key.html#verifying-signed-data","02_core_ledger/04_jcli/rest.html#rest","02_core_ledger/04_jcli/rest.html#conventions","02_core_ledger/04_jcli/rest.html#node-stats","02_core_ledger/04_jcli/rest.html#get-utxo","02_core_ledger/04_jcli/rest.html#post-transaction","02_core_ledger/04_jcli/rest.html#get-message-log","02_core_ledger/04_jcli/rest.html#blockchain-tip","02_core_ledger/04_jcli/rest.html#get-block","02_core_ledger/04_jcli/rest.html#get-next-block-id","02_core_ledger/04_jcli/rest.html#get-account-state","02_core_ledger/04_jcli/rest.html#node-settings","02_core_ledger/04_jcli/rest.html#node-shutdown","02_core_ledger/04_jcli/rest.html#get-leaders","02_core_ledger/04_jcli/rest.html#register-leader","02_core_ledger/04_jcli/rest.html#delete-leader","02_core_ledger/04_jcli/rest.html#get-leadership-logs","02_core_ledger/04_jcli/rest.html#get-stake-pools","02_core_ledger/04_jcli/rest.html#get-stake-distribution","02_core_ledger/04_jcli/rest.html#network-stats","02_core_ledger/04_jcli/rest.html#get-stake-pool-details","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-a-specific-epoch","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-some-epochs","02_core_ledger/04_jcli/rest.html#get-voting-committee-members","02_core_ledger/04_jcli/rest.html#get-active-voting-plans-and-proposals","02_core_ledger/04_jcli/transaction.html#transaction","02_core_ledger/04_jcli/transaction.html#transaction-info","02_core_ledger/04_jcli/transaction.html#examples","02_core_ledger/04_jcli/transaction.html#input-utxo","02_core_ledger/04_jcli/transaction.html#destination-address","02_core_ledger/04_jcli/transaction.html#create-a-staging-area","02_core_ledger/04_jcli/transaction.html#add-input","02_core_ledger/04_jcli/transaction.html#example---utxo-address-as-input","02_core_ledger/04_jcli/transaction.html#example---account-address-as-input","02_core_ledger/04_jcli/transaction.html#add-output","02_core_ledger/04_jcli/transaction.html#add-fee-and-change-address","02_core_ledger/04_jcli/transaction.html#sign-the-transaction","02_core_ledger/04_jcli/transaction.html#make-witness","02_core_ledger/04_jcli/transaction.html#add-witness","02_core_ledger/04_jcli/transaction.html#send-the-transaction","02_core_ledger/04_jcli/transaction.html#checking-if-the-transaction-was-accepted","02_core_ledger/04_jcli/vote.html#voting","02_core_ledger/04_jcli/vote.html#creating-committee-keys","02_core_ledger/04_jcli/vote.html#private","02_core_ledger/04_jcli/vote.html#creating-a-vote-plan","02_core_ledger/04_jcli/vote.html#casting-votes","02_core_ledger/04_jcli/vote.html#tallying","02_core_ledger/04_jcli/vote.html#public-vote-plan","02_core_ledger/04_jcli/vote.html#private-vote-plan","02_core_ledger/05_stake_pool/index.html#staking-with-jörmungandr","02_core_ledger/05_stake_pool/delegating_stake.html#delegating-your-stake","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-create-the-delegation-certificate","02_core_ledger/05_stake_pool/delegating_stake.html#for-own-account","02_core_ledger/05_stake_pool/delegating_stake.html#for-any-account","02_core_ledger/05_stake_pool/delegating_stake.html#submitting-to-a-node","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-sign-your-delegation-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#registering-a-stake-pool","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-primitives","02_core_ledger/05_stake_pool/registering_stake_pool.html#vrf-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#kes-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#choosing-the--tax--parameters","02_core_ledger/05_stake_pool/registering_stake_pool.html#so-how-does-this-works","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-options-to-set","02_core_ledger/05_stake_pool/registering_stake_pool.html#creating-a-stake-pool-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#submitting-to-a-node","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retiring-a-stake-pool","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retrieve-stake-pool-id","02_core_ledger/05_stake_pool/retiring_stake_pool.html#creating-a-retirement-certificate","02_core_ledger/05_stake_pool/retiring_stake_pool.html#submitting-to-a-node","02_core_ledger/06_advanced/index.html#advanced","02_core_ledger/06_advanced/01_the_genesis_block.html#genesis-file","02_core_ledger/06_advanced/01_the_genesis_block.html#blockchain_configuration-options","02_core_ledger/06_advanced/01_the_genesis_block.html#initial-options","02_core_ledger/06_advanced/01_the_genesis_block.html#fund-and-legacy_fund-format","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-a-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#how-does-it-work","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#example-of-genesis-file","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#creating-the-block-0","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-the-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#step-by-step-to-start-the-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#script","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-a-genesis-blockchain","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#the-initial-certificates","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#stake-pool-registration","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#delegating-stake","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-the-node","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#test-script","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#how-vote-plans-vote-fragments-and-the-blockchain-transaction-work-and-inter-relate","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#sasha-prokhorenko","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#nicolo-padovani","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#felipe-rosa","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#joaquin-rosales","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#proposalchain_proposal_id","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefano-cunego","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#conor-gannon","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#alex-pozhylenkov","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#spending-counters","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#cameron-mcloughlin","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#dariusz-kijania","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#ognjen-dokmanovic","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefan-rasevic","02_core_ledger/07_specs/index.html#jormungandr-specifications","02_core_ledger/07_specs/migration.html#migration","02_core_ledger/07_specs/migration.html#vocabulary","02_core_ledger/07_specs/migration.html#description","02_core_ledger/07_specs/migration.html#mechanisms","02_core_ledger/07_specs/migration.html#transaction","02_core_ledger/07_specs/migration.html#mainnet-testnet-tests","02_core_ledger/07_specs/migration.html#advantages","02_core_ledger/07_specs/migration.html#historical-data","02_core_ledger/07_specs/network.html#network","02_core_ledger/07_specs/network.html#introduction","02_core_ledger/07_specs/network.html#design-decisions-guidelines","02_core_ledger/07_specs/network.html#node-to-node-communication","02_core_ledger/07_specs/network.html#general-functionality","02_core_ledger/07_specs/network.html#design","02_core_ledger/07_specs/network.html#node-to-client-communication","02_core_ledger/07_specs/network.html#peer-to-peer-network","02_core_ledger/07_specs/network.html#definitions","02_core_ledger/07_specs/network.html#functionalities","02_core_ledger/07_specs/network.html#messages","02_core_ledger/07_specs/network.html#communications-design","02_core_ledger/07_specs/network.html#adversarial-models-considered","02_core_ledger/07_specs/network.html#adversarial-forks","02_core_ledger/07_specs/network.html#flooding-attack","02_core_ledger/07_specs/network.html#anonymity-against-distributed-adversaries","02_core_ledger/07_specs/network.html#man-in-the-middle","02_core_ledger/07_specs/network.html#in-relation-to-ouroboros-genesis","02_core_ledger/08_testing/index.html#testing","02_core_ledger/08_testing/automation.html#jormungandr-automation","02_core_ledger/08_testing/automation.html#build","02_core_ledger/08_testing/automation.html#jcli-testing-api","02_core_ledger/08_testing/automation.html#jormungandr-testing-api","02_core_ledger/08_testing/automation.html#testing","02_core_ledger/08_testing/hersir.html#hersir","02_core_ledger/08_testing/hersir.html#build--install","02_core_ledger/08_testing/hersir.html#quick-start","02_core_ledger/08_testing/hersir.html#configuration","02_core_ledger/08_testing/hersir.html#full-list-of-available-parameters","02_core_ledger/08_testing/hersir.html#full-list-of-available-commands","02_core_ledger/08_testing/integration_tests.html#jormungandr-integration-tests","02_core_ledger/08_testing/integration_tests.html#architecture-of-tests","02_core_ledger/08_testing/integration_tests.html#quick-start","02_core_ledger/08_testing/integration_tests.html#prerequisites","02_core_ledger/08_testing/integration_tests.html#start-tests","02_core_ledger/08_testing/integration_tests.html#tests-categories","02_core_ledger/08_testing/integration_tests.html#how-to-run-all-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-jcli-only-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-endurance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-endurance-tests","02_core_ledger/08_testing/integration_tests.html#frequency","02_core_ledger/08_testing/loki.html#loki","02_core_ledger/08_testing/loki.html#build--install","02_core_ledger/08_testing/loki.html#quick-start","02_core_ledger/08_testing/loki.html#other-possible-operations","02_core_ledger/08_testing/loki.html#api","02_core_ledger/08_testing/mjolnir.html#mjolnir","02_core_ledger/08_testing/mjolnir.html#build--install","02_core_ledger/08_testing/mjolnir.html#quick-start","02_core_ledger/08_testing/mjolnir.html#cli","02_core_ledger/08_testing/mjolnir.html#api","02_core_ledger/08_testing/mjolnir.html#full-list-of-available-commands","02_core_ledger/08_testing/thor.html#thor","02_core_ledger/08_testing/thor.html#build--install","02_core_ledger/08_testing/thor.html#quick-start","02_core_ledger/08_testing/thor.html#cli","02_core_ledger/08_testing/thor.html#api","02_core_ledger/08_testing/thor.html#configuration","02_core_ledger/08_testing/thor.html#full-list-of-available-commands","02_core_ledger/09_internal_design/index.html#internal-design","02_core_ledger/09_internal_design/index.html#tasks","02_core_ledger/09_internal_design/index.html#maintaining-the-blockchains-state","02_core_ledger/09_internal_design/index.html#from-the-block-0","02_core_ledger/09_internal_design/index.html#for-a-block","02_core_ledger/09_internal_design/index.html#epoch-transition","02_core_ledger/09_internal_design/01_auto-start.html#automatic-deployment-of-the-voting-blockchain","02_core_ledger/09_internal_design/01_auto-start.html#overview","02_core_ledger/09_internal_design/01_auto-start.html#configuration","02_core_ledger/09_internal_design/02_permissionless_auth.html#permissionless-auth","03_core_testing/index.html#catalyst-testing-user-guide","03_core_testing/iapyx/index.html#iapyx","03_core_testing/iapyx/iapyx.html#iapyx","03_core_testing/iapyx/iapyx.html#build--install","03_core_testing/iapyx/iapyx.html#quick-start","03_core_testing/iapyx/iapyx.html#cli","03_core_testing/iapyx/iapyx.html#api","03_core_testing/iapyx/iapyx.html#configuration","03_core_testing/iapyx/iapyx.html#full-list-of-available-commands","03_core_testing/iapyx/load.html#iapyx-load","03_core_testing/iapyx/load.html#build--install","03_core_testing/iapyx/load.html#quick-start","03_core_testing/iapyx/load.html#cli","03_core_testing/iapyx/load.html#api","03_core_testing/iapyx/load.html#full-list-of-available-commands","03_core_testing/integration-tests/index.html#integration-tests","03_core_testing/integration-tests/index.html#architecture-of-tests","03_core_testing/integration-tests/index.html#quick-start","03_core_testing/integration-tests/index.html#prerequisites","03_core_testing/integration-tests/index.html#start-tests","03_core_testing/integration-tests/index.html#tests-categories","03_core_testing/integration-tests/index.html#how-to-run-all-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-testnet-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-load-tests","03_core_testing/integration-tests/index.html#how-to-run-network-endurance-tests","03_core_testing/integration-tests/index.html#frequency","03_core_testing/registration-service/index.html#registration-service","03_core_testing/registration-service/index.html#build","03_core_testing/registration-service/index.html#quick-start","03_core_testing/registration-service/index.html#clients","03_core_testing/registration-service/index.html#cli","03_core_testing/registration-service/index.html#api","03_core_testing/registration-service/cli.html#registration-cli","03_core_testing/registration-service/cli.html#build--install","03_core_testing/registration-service/cli.html#quick-start","03_core_testing/registration-service/cli.html#full-list-of-available-commands","03_core_testing/registration-service/configuration.html#configuration","03_core_testing/registration-verify-service/index.html#registration-service","03_core_testing/registration-verify-service/index.html#build","03_core_testing/registration-verify-service/index.html#quick-start","03_core_testing/registration-verify-service/index.html#clients","03_core_testing/registration-verify-service/index.html#cli","03_core_testing/registration-verify-service/index.html#api","03_core_testing/registration-verify-service/cli.html#registration-verify-cli","03_core_testing/registration-verify-service/cli.html#build--install","03_core_testing/registration-verify-service/cli.html#quick-start","03_core_testing/registration-verify-service/cli.html#full-list-of-available-commands","03_core_testing/registration-verify-service/configuration.html#configuration","03_core_testing/snapshot-service/index.html#snapshot-trigger-service","03_core_testing/snapshot-service/index.html#build","03_core_testing/snapshot-service/index.html#quick-start","03_core_testing/snapshot-service/index.html#usage","03_core_testing/snapshot-service/index.html#clients","03_core_testing/snapshot-service/index.html#cli","03_core_testing/snapshot-service/index.html#api","03_core_testing/snapshot-service/cli.html#registration-cli","03_core_testing/snapshot-service/cli.html#build--install","03_core_testing/snapshot-service/cli.html#quick-start","03_core_testing/snapshot-service/cli.html#full-list-of-available-commands","03_core_testing/snapshot-service/configuration.html#configuration","03_core_testing/snapshot-wormhole/index.html#snapshot-wormhole","03_core_testing/snapshot-wormhole/index.html#build","03_core_testing/snapshot-wormhole/index.html#run","03_core_testing/snapshot-wormhole/index.html#quick-start","03_core_testing/snapshot-wormhole/index.html#run-modes","03_core_testing/snapshot-wormhole/configuration.html#configuration","03_core_testing/snapshot-wormhole/configuration.html#snapshot-service","03_core_testing/snapshot-wormhole/configuration.html#servicing-station-service","03_core_testing/snapshot-wormhole/configuration.html#parameters","03_core_testing/valgrind/index.html#valgrind","03_core_testing/valgrind/index.html#build","03_core_testing/valgrind/index.html#quick-start","03_core_testing/valgrind/index.html#client","03_core_testing/valgrind/configuration.html#configuration","03_core_testing/vitup/index.html#vitup","03_core_testing/vitup/index.html#build","03_core_testing/vitup/index.html#quick-start","03_core_testing/vitup/configuration.html#configuration","03_core_testing/vitup/configuration.html#serdedefault","03_core_testing/vitup/data_generation/index.html#data-generation","03_core_testing/vitup/data_generation/reset.html#configuration","03_core_testing/vitup/data_generation/reset.html#initials","03_core_testing/vitup/data_generation/reset.html#snapshot","03_core_testing/vitup/data_generation/reset.html#block0","03_core_testing/vitup/data_generation/reset.html#snapshot-1","03_core_testing/vitup/data_generation/reset.html#vote-plan","03_core_testing/vitup/data_generation/reset.html#vote-time","03_core_testing/vitup/data_generation/reset.html#example","03_core_testing/vitup/data_generation/reset.html#data","03_core_testing/vitup/data_generation/reset.html#current-fund","03_core_testing/vitup/data_generation/reset.html#next-funds","03_core_testing/vitup/data_generation/reset.html#service","03_core_testing/vitup/data_generation/reset.html#version","03_core_testing/vitup/data_generation/reset.html#https","03_core_testing/vitup/data_generation/reset.html#full-example","03_core_testing/vitup/data_generation/snapshot.html#configuration","03_core_testing/vitup/data_generation/snapshot.html#example","03_core_testing/vitup/data_generation/snapshot.html#parameters","03_core_testing/vitup/data_generation/snapshot.html#content","03_core_testing/vitup/data_generation/snapshot.html#actor","03_core_testing/vitup/data_generation.html#data-generation","03_core_testing/vitup/mock.html#mock","03_core_testing/vitup/mock.html#configuration","03_core_testing/vitup/mock.html#start","03_core_testing/vitup/mock.html#admin-rest-commands","03_core_testing/vitup/mock.html#admin-cli","03_core_testing/vitup/mock_farm.html#mock-farm","03_core_testing/vitup/mock_farm.html#configuration","03_core_testing/vitup/mock_farm.html#start","03_core_testing/vitup/mock_farm.html#documentation","03_core_testing/vitup/run_modes.html#configuration-modes","03_core_testing/vitup/run_modes.html#run-modes","03_core_testing/vitup/run_modes.html#endless-mode","03_core_testing/vitup/run_modes.html#service-mode","03_core_testing/vitup/run_modes.html#admin-operations","03_core_testing/vitup/run_modes.html#how-to-send-operations","03_core_testing/vitup/run_modes.html#check-environment-status","03_core_testing/vitup/run_modes.html#start-environment","03_core_testing/vitup/run_modes.html#list-files","03_core_testing/vitup/run_modes.html#get-files","03_core_testing/vitup/run_modes.html#interactive-mode","04_core_vitss/index.html#core-vit-servicing-station","04_core_vitss/testing.html#vit-servicing-station-tests","04_core_vitss/testing.html#quick-start","04_core_vitss/testing.html#prerequisites","04_core_vitss/testing.html#start-tests","04_core_vitss/testing.html#tests-categories","04_core_vitss/testing.html#how-to-run-all-functional-tests","04_core_vitss/testing.html#how-to-run-performance-tests","04_core_vitss/testing.html#how-to-run-endurance-tests","04_core_vitss/testing.html#frequency","05_unified_platform/index.html#unified-platform","05_unified_platform/01_catalyst-cardano-bridge/index.html#overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#issues-with-the-previous-systems","05_unified_platform/01_catalyst-cardano-bridge/index.html#the-solution","05_unified_platform/01_catalyst-cardano-bridge/index.html#architecture-overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#architectural-diagram","05_unified_platform/01_catalyst-cardano-bridge/index.html#integration-to-the-catalyst-unified-backend","05_unified_platform/01_catalyst-cardano-bridge/01_cardano_nodes.html#cardano-nodes","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/index.html#bridge-pipeline","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/01_block_reader.html#block-reader","05_unified_platform/01_catalyst-cardano-bridge/03_rest_http_service.html#rest-http-service","05_unified_platform/01_catalyst-cardano-bridge/04_event_stream.html#event-stream","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#database","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#servers","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#high-level-data-design","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#registrations-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#current-voter-registration","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#all-current-voter-registrations","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-ada-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#all-current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-balances-for-a-period","05_unified_platform/01_catalyst-cardano-bridge/05_database/03_transaction_state.html#transaction-state-database","06_rust_api/index.html#rust-api","06_rust_api/rust_api.html#rust-api-documentation-and-packages","06_rust_api/rust_api.html#blockchain","06_rust_api/rust_api.html#db-sync-explorer","06_rust_api/rust_api.html#explorer---explorer-service-for-jormungandr","06_rust_api/rust_api.html#integration-tests","06_rust_api/rust_api.html#jormungandr---midgard-serpent","06_rust_api/rust_api.html#jormungandrwallet","06_rust_api/rust_api.html#mjolnir","06_rust_api/rust_api.html#settings","06_rust_api/rust_api.html#sparse-array","06_rust_api/rust_api.html#vit-servicing-station-cli","06_rust_api/rust_api.html#vit-servicing-station-server","06_rust_api/rust_api.html#wallet-wasm-js---wallet-functionalities-to-interact-with-jörmungandr--this-package-profiles-all-that-is-needed-to-have-an-healthy-and-secure-interaction-with-jörmungandr-blockchain-technology","06_rust_api/rust_style_guide.html#-rust-style-guide","06_rust_api/rust_style_guide.html#toolchain","06_rust_api/rust_style_guide.html#basic-rules","06_rust_api/rust_style_guide.html#creating-a-new-crate","06_rust_api/rust_style_guide.html#exceptions-for-clippy","06_rust_api/rust_style_guide.html#guidelines","06_rust_api/rust_style_guide.html#prefer-references-over-generics","06_rust_api/rust_style_guide.html#abbreviations-and-naming-things","06_rust_api/rust_style_guide.html#pay-attention-to-the-public-api-of-your-crate","06_rust_api/rust_style_guide.html#type-safety","06_rust_api/rust_style_guide.html#use-newtypes-aka-microtypes","06_rust_api/rust_style_guide.html#dont-over-abstract","06_rust_api/rust_style_guide.html#unsafe-code","06_rust_api/rust_style_guide.html#docs","06_rust_api/rust_style_guide.html#doctests","06_rust_api/rust_style_guide.html#write-code-as-if-its-going-to-be-in-a-web-server","06_rust_api/rust_style_guide.html#error-handling","06_rust_api/rust_style_guide.html#handling-expected-errors","07_web_api/index.html#web-api","07_web_api/dbsync-explorer.html#dbsync-explorer-httprest-api-v1","07_web_api/vit-servicing-station-v0.html#vit-servicing-station-httprest-api-v0","07_web_api/vit-testing-mock-farm-v0.html#vit-testing-mock-farm-httprest-api-v0","07_web_api/vit-testing-mock-v0.html#vit-testing-mock-httprest-api-v0","07_web_api/vote-ledger-v0.html#vote-ledger-httprest-api-v0","07_web_api/vote-ledger-v1.html#vote-ledger-httprest-api-v1","97_CONTRIBUTING.html#contributing-to-catalyst-core","97_CONTRIBUTING.html#table-of-contents","97_CONTRIBUTING.html#code-of-conduct","97_CONTRIBUTING.html#i-have-a-question","97_CONTRIBUTING.html#i-want-to-contribute","97_CONTRIBUTING.html#legal-notice","97_CONTRIBUTING.html#reporting-bugs","97_CONTRIBUTING.html#suggesting-enhancements","97_CONTRIBUTING.html#your-first-code-contribution","97_CONTRIBUTING.html#improving-the-documentation","97_CONTRIBUTING.html#styleguides","97_CONTRIBUTING.html#commit-messages","98_CODE_OF_CONDUCT.html#contributor-covenant-code-of-conduct","98_CODE_OF_CONDUCT.html#our-pledge","98_CODE_OF_CONDUCT.html#our-standards","98_CODE_OF_CONDUCT.html#enforcement-responsibilities","98_CODE_OF_CONDUCT.html#scope","98_CODE_OF_CONDUCT.html#enforcement","98_CODE_OF_CONDUCT.html#enforcement-guidelines","98_CODE_OF_CONDUCT.html#1-correction","98_CODE_OF_CONDUCT.html#2-warning","98_CODE_OF_CONDUCT.html#3-temporary-ban","98_CODE_OF_CONDUCT.html#4-permanent-ban","98_CODE_OF_CONDUCT.html#attribution","99_example_enhanced_markup.html#example-enhanced-markup","99_example_enhanced_markup.html#example-rendered-diagrams","ZZ_suffix.html#suffix"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":31,"breadcrumbs":7,"title":1},"100":{"body":16,"breadcrumbs":7,"title":3},"101":{"body":11,"breadcrumbs":8,"title":4},"102":{"body":64,"breadcrumbs":7,"title":2},"103":{"body":50,"breadcrumbs":7,"title":2},"104":{"body":46,"breadcrumbs":8,"title":3},"105":{"body":9,"breadcrumbs":5,"title":1},"106":{"body":61,"breadcrumbs":5,"title":1},"107":{"body":162,"breadcrumbs":6,"title":2},"108":{"body":49,"breadcrumbs":5,"title":1},"109":{"body":44,"breadcrumbs":6,"title":2},"11":{"body":91,"breadcrumbs":7,"title":1},"110":{"body":110,"breadcrumbs":6,"title":2},"111":{"body":19,"breadcrumbs":6,"title":2},"112":{"body":25,"breadcrumbs":5,"title":1},"113":{"body":49,"breadcrumbs":7,"title":3},"114":{"body":66,"breadcrumbs":6,"title":2},"115":{"body":204,"breadcrumbs":6,"title":2},"116":{"body":15,"breadcrumbs":6,"title":2},"117":{"body":30,"breadcrumbs":5,"title":1},"118":{"body":48,"breadcrumbs":6,"title":2},"119":{"body":23,"breadcrumbs":6,"title":2},"12":{"body":26,"breadcrumbs":7,"title":1},"120":{"body":91,"breadcrumbs":6,"title":2},"121":{"body":33,"breadcrumbs":6,"title":2},"122":{"body":128,"breadcrumbs":6,"title":2},"123":{"body":76,"breadcrumbs":6,"title":2},"124":{"body":83,"breadcrumbs":7,"title":3},"125":{"body":90,"breadcrumbs":8,"title":4},"126":{"body":96,"breadcrumbs":7,"title":3},"127":{"body":31,"breadcrumbs":7,"title":3},"128":{"body":61,"breadcrumbs":8,"title":4},"129":{"body":98,"breadcrumbs":5,"title":1},"13":{"body":21,"breadcrumbs":7,"title":1},"130":{"body":296,"breadcrumbs":6,"title":2},"131":{"body":38,"breadcrumbs":5,"title":1},"132":{"body":16,"breadcrumbs":6,"title":2},"133":{"body":2,"breadcrumbs":6,"title":2},"134":{"body":5,"breadcrumbs":7,"title":3},"135":{"body":18,"breadcrumbs":6,"title":2},"136":{"body":9,"breadcrumbs":8,"title":4},"137":{"body":13,"breadcrumbs":8,"title":4},"138":{"body":14,"breadcrumbs":6,"title":2},"139":{"body":86,"breadcrumbs":8,"title":4},"14":{"body":69,"breadcrumbs":7,"title":1},"140":{"body":0,"breadcrumbs":6,"title":2},"141":{"body":139,"breadcrumbs":6,"title":2},"142":{"body":7,"breadcrumbs":6,"title":2},"143":{"body":31,"breadcrumbs":6,"title":2},"144":{"body":65,"breadcrumbs":7,"title":3},"145":{"body":17,"breadcrumbs":5,"title":1},"146":{"body":0,"breadcrumbs":7,"title":3},"147":{"body":143,"breadcrumbs":5,"title":1},"148":{"body":61,"breadcrumbs":7,"title":3},"149":{"body":171,"breadcrumbs":6,"title":2},"15":{"body":65,"breadcrumbs":7,"title":1},"150":{"body":0,"breadcrumbs":5,"title":1},"151":{"body":165,"breadcrumbs":7,"title":3},"152":{"body":141,"breadcrumbs":7,"title":3},"153":{"body":17,"breadcrumbs":8,"title":2},"154":{"body":0,"breadcrumbs":8,"title":2},"155":{"body":10,"breadcrumbs":9,"title":3},"156":{"body":60,"breadcrumbs":7,"title":1},"157":{"body":28,"breadcrumbs":7,"title":1},"158":{"body":65,"breadcrumbs":8,"title":2},"159":{"body":46,"breadcrumbs":9,"title":3},"16":{"body":29,"breadcrumbs":8,"title":2},"160":{"body":58,"breadcrumbs":10,"title":3},"161":{"body":0,"breadcrumbs":8,"title":1},"162":{"body":33,"breadcrumbs":10,"title":3},"163":{"body":27,"breadcrumbs":10,"title":3},"164":{"body":46,"breadcrumbs":10,"title":3},"165":{"body":116,"breadcrumbs":8,"title":1},"166":{"body":61,"breadcrumbs":9,"title":2},"167":{"body":59,"breadcrumbs":11,"title":4},"168":{"body":70,"breadcrumbs":9,"title":2},"169":{"body":32,"breadcrumbs":10,"title":3},"17":{"body":35,"breadcrumbs":7,"title":1},"170":{"body":11,"breadcrumbs":11,"title":4},"171":{"body":43,"breadcrumbs":10,"title":3},"172":{"body":92,"breadcrumbs":9,"title":2},"173":{"body":25,"breadcrumbs":5,"title":1},"174":{"body":746,"breadcrumbs":7,"title":2},"175":{"body":101,"breadcrumbs":7,"title":2},"176":{"body":60,"breadcrumbs":7,"title":2},"177":{"body":24,"breadcrumbs":8,"title":3},"178":{"body":22,"breadcrumbs":9,"title":3},"179":{"body":39,"breadcrumbs":7,"title":1},"18":{"body":54,"breadcrumbs":8,"title":2},"180":{"body":54,"breadcrumbs":9,"title":3},"181":{"body":19,"breadcrumbs":9,"title":3},"182":{"body":42,"breadcrumbs":8,"title":2},"183":{"body":90,"breadcrumbs":11,"title":5},"184":{"body":15,"breadcrumbs":7,"title":1},"185":{"body":78,"breadcrumbs":9,"title":3},"186":{"body":32,"breadcrumbs":8,"title":2},"187":{"body":25,"breadcrumbs":9,"title":3},"188":{"body":92,"breadcrumbs":8,"title":2},"189":{"body":55,"breadcrumbs":8,"title":2},"19":{"body":28,"breadcrumbs":8,"title":2},"190":{"body":18,"breadcrumbs":8,"title":2},"191":{"body":194,"breadcrumbs":21,"title":9},"192":{"body":0,"breadcrumbs":14,"title":2},"193":{"body":0,"breadcrumbs":14,"title":2},"194":{"body":0,"breadcrumbs":14,"title":2},"195":{"body":0,"breadcrumbs":14,"title":2},"196":{"body":81,"breadcrumbs":13,"title":1},"197":{"body":0,"breadcrumbs":14,"title":2},"198":{"body":0,"breadcrumbs":14,"title":2},"199":{"body":0,"breadcrumbs":14,"title":2},"2":{"body":5,"breadcrumbs":3,"title":2},"20":{"body":87,"breadcrumbs":8,"title":2},"200":{"body":110,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":0,"breadcrumbs":14,"title":2},"203":{"body":0,"breadcrumbs":14,"title":2},"204":{"body":5,"breadcrumbs":14,"title":2},"205":{"body":13,"breadcrumbs":8,"title":2},"206":{"body":12,"breadcrumbs":6,"title":1},"207":{"body":5,"breadcrumbs":6,"title":1},"208":{"body":154,"breadcrumbs":6,"title":1},"209":{"body":123,"breadcrumbs":6,"title":1},"21":{"body":42,"breadcrumbs":7,"title":1},"210":{"body":58,"breadcrumbs":6,"title":1},"211":{"body":92,"breadcrumbs":8,"title":3},"212":{"body":42,"breadcrumbs":6,"title":1},"213":{"body":123,"breadcrumbs":7,"title":2},"214":{"body":3,"breadcrumbs":6,"title":1},"215":{"body":19,"breadcrumbs":6,"title":1},"216":{"body":53,"breadcrumbs":8,"title":3},"217":{"body":16,"breadcrumbs":8,"title":3},"218":{"body":32,"breadcrumbs":7,"title":2},"219":{"body":647,"breadcrumbs":6,"title":1},"22":{"body":45,"breadcrumbs":8,"title":2},"220":{"body":30,"breadcrumbs":8,"title":3},"221":{"body":18,"breadcrumbs":8,"title":3},"222":{"body":29,"breadcrumbs":6,"title":1},"223":{"body":39,"breadcrumbs":6,"title":1},"224":{"body":26,"breadcrumbs":6,"title":1},"225":{"body":326,"breadcrumbs":7,"title":2},"226":{"body":0,"breadcrumbs":8,"title":3},"227":{"body":166,"breadcrumbs":7,"title":2},"228":{"body":100,"breadcrumbs":7,"title":2},"229":{"body":48,"breadcrumbs":9,"title":4},"23":{"body":80,"breadcrumbs":8,"title":2},"230":{"body":42,"breadcrumbs":7,"title":2},"231":{"body":49,"breadcrumbs":8,"title":3},"232":{"body":69,"breadcrumbs":5,"title":1},"233":{"body":5,"breadcrumbs":7,"title":2},"234":{"body":13,"breadcrumbs":6,"title":1},"235":{"body":28,"breadcrumbs":8,"title":3},"236":{"body":72,"breadcrumbs":8,"title":3},"237":{"body":107,"breadcrumbs":6,"title":1},"238":{"body":12,"breadcrumbs":5,"title":1},"239":{"body":15,"breadcrumbs":6,"title":2},"24":{"body":162,"breadcrumbs":7,"title":1},"240":{"body":15,"breadcrumbs":6,"title":2},"241":{"body":54,"breadcrumbs":5,"title":1},"242":{"body":529,"breadcrumbs":8,"title":4},"243":{"body":36,"breadcrumbs":8,"title":4},"244":{"body":22,"breadcrumbs":9,"title":3},"245":{"body":38,"breadcrumbs":8,"title":2},"246":{"body":0,"breadcrumbs":8,"title":2},"247":{"body":8,"breadcrumbs":7,"title":1},"248":{"body":12,"breadcrumbs":8,"title":2},"249":{"body":19,"breadcrumbs":8,"title":2},"25":{"body":0,"breadcrumbs":8,"title":2},"250":{"body":9,"breadcrumbs":9,"title":3},"251":{"body":7,"breadcrumbs":10,"title":4},"252":{"body":7,"breadcrumbs":11,"title":5},"253":{"body":10,"breadcrumbs":11,"title":5},"254":{"body":10,"breadcrumbs":11,"title":5},"255":{"body":9,"breadcrumbs":10,"title":4},"256":{"body":10,"breadcrumbs":10,"title":4},"257":{"body":10,"breadcrumbs":10,"title":4},"258":{"body":16,"breadcrumbs":7,"title":1},"259":{"body":8,"breadcrumbs":5,"title":1},"26":{"body":15,"breadcrumbs":8,"title":2},"260":{"body":15,"breadcrumbs":6,"title":2},"261":{"body":88,"breadcrumbs":6,"title":2},"262":{"body":24,"breadcrumbs":6,"title":2},"263":{"body":38,"breadcrumbs":5,"title":1},"264":{"body":8,"breadcrumbs":5,"title":1},"265":{"body":15,"breadcrumbs":6,"title":2},"266":{"body":0,"breadcrumbs":6,"title":2},"267":{"body":107,"breadcrumbs":5,"title":1},"268":{"body":99,"breadcrumbs":5,"title":1},"269":{"body":85,"breadcrumbs":8,"title":4},"27":{"body":19,"breadcrumbs":7,"title":1},"270":{"body":16,"breadcrumbs":5,"title":1},"271":{"body":15,"breadcrumbs":6,"title":2},"272":{"body":0,"breadcrumbs":6,"title":2},"273":{"body":66,"breadcrumbs":5,"title":1},"274":{"body":32,"breadcrumbs":5,"title":1},"275":{"body":25,"breadcrumbs":5,"title":1},"276":{"body":109,"breadcrumbs":8,"title":4},"277":{"body":26,"breadcrumbs":8,"title":2},"278":{"body":135,"breadcrumbs":7,"title":1},"279":{"body":103,"breadcrumbs":9,"title":3},"28":{"body":30,"breadcrumbs":9,"title":3},"280":{"body":62,"breadcrumbs":8,"title":2},"281":{"body":77,"breadcrumbs":7,"title":1},"282":{"body":11,"breadcrumbs":8,"title":2},"283":{"body":44,"breadcrumbs":12,"title":4},"284":{"body":91,"breadcrumbs":9,"title":1},"285":{"body":307,"breadcrumbs":9,"title":1},"286":{"body":117,"breadcrumbs":8,"title":2},"287":{"body":50,"breadcrumbs":12,"title":4},"288":{"body":0,"breadcrumbs":7,"title":1},"289":{"body":17,"breadcrumbs":7,"title":1},"29":{"body":21,"breadcrumbs":9,"title":3},"290":{"body":15,"breadcrumbs":8,"title":2},"291":{"body":0,"breadcrumbs":8,"title":2},"292":{"body":64,"breadcrumbs":7,"title":1},"293":{"body":36,"breadcrumbs":7,"title":1},"294":{"body":25,"breadcrumbs":7,"title":1},"295":{"body":124,"breadcrumbs":10,"title":4},"296":{"body":9,"breadcrumbs":9,"title":2},"297":{"body":16,"breadcrumbs":9,"title":2},"298":{"body":0,"breadcrumbs":9,"title":2},"299":{"body":250,"breadcrumbs":8,"title":1},"3":{"body":34,"breadcrumbs":6,"title":2},"30":{"body":21,"breadcrumbs":9,"title":3},"300":{"body":65,"breadcrumbs":8,"title":1},"301":{"body":85,"breadcrumbs":11,"title":4},"302":{"body":20,"breadcrumbs":10,"title":2},"303":{"body":39,"breadcrumbs":10,"title":2},"304":{"body":0,"breadcrumbs":10,"title":2},"305":{"body":28,"breadcrumbs":9,"title":1},"306":{"body":12,"breadcrumbs":10,"title":2},"307":{"body":19,"breadcrumbs":10,"title":2},"308":{"body":5,"breadcrumbs":11,"title":3},"309":{"body":8,"breadcrumbs":12,"title":4},"31":{"body":41,"breadcrumbs":6,"title":1},"310":{"body":9,"breadcrumbs":11,"title":3},"311":{"body":10,"breadcrumbs":12,"title":4},"312":{"body":11,"breadcrumbs":9,"title":1},"313":{"body":16,"breadcrumbs":10,"title":2},"314":{"body":16,"breadcrumbs":9,"title":1},"315":{"body":13,"breadcrumbs":10,"title":2},"316":{"body":0,"breadcrumbs":9,"title":1},"317":{"body":17,"breadcrumbs":9,"title":1},"318":{"body":63,"breadcrumbs":9,"title":1},"319":{"body":9,"breadcrumbs":10,"title":2},"32":{"body":40,"breadcrumbs":8,"title":3},"320":{"body":16,"breadcrumbs":10,"title":2},"321":{"body":61,"breadcrumbs":10,"title":2},"322":{"body":70,"breadcrumbs":12,"title":4},"323":{"body":88,"breadcrumbs":8,"title":1},"324":{"body":16,"breadcrumbs":10,"title":2},"325":{"body":19,"breadcrumbs":9,"title":1},"326":{"body":13,"breadcrumbs":10,"title":2},"327":{"body":0,"breadcrumbs":9,"title":1},"328":{"body":18,"breadcrumbs":9,"title":1},"329":{"body":30,"breadcrumbs":9,"title":1},"33":{"body":58,"breadcrumbs":8,"title":3},"330":{"body":10,"breadcrumbs":12,"title":3},"331":{"body":19,"breadcrumbs":11,"title":2},"332":{"body":62,"breadcrumbs":11,"title":2},"333":{"body":70,"breadcrumbs":13,"title":4},"334":{"body":102,"breadcrumbs":8,"title":1},"335":{"body":12,"breadcrumbs":13,"title":3},"336":{"body":19,"breadcrumbs":11,"title":1},"337":{"body":14,"breadcrumbs":12,"title":2},"338":{"body":77,"breadcrumbs":11,"title":1},"339":{"body":0,"breadcrumbs":11,"title":1},"34":{"body":28,"breadcrumbs":7,"title":2},"340":{"body":18,"breadcrumbs":11,"title":1},"341":{"body":26,"breadcrumbs":11,"title":1},"342":{"body":9,"breadcrumbs":11,"title":2},"343":{"body":17,"breadcrumbs":11,"title":2},"344":{"body":46,"breadcrumbs":11,"title":2},"345":{"body":77,"breadcrumbs":13,"title":4},"346":{"body":110,"breadcrumbs":9,"title":1},"347":{"body":20,"breadcrumbs":10,"title":2},"348":{"body":14,"breadcrumbs":9,"title":1},"349":{"body":0,"breadcrumbs":9,"title":1},"35":{"body":43,"breadcrumbs":7,"title":2},"350":{"body":27,"breadcrumbs":10,"title":2},"351":{"body":87,"breadcrumbs":10,"title":2},"352":{"body":9,"breadcrumbs":8,"title":1},"353":{"body":16,"breadcrumbs":9,"title":2},"354":{"body":13,"breadcrumbs":10,"title":3},"355":{"body":80,"breadcrumbs":8,"title":1},"356":{"body":9,"breadcrumbs":7,"title":1},"357":{"body":12,"breadcrumbs":7,"title":1},"358":{"body":12,"breadcrumbs":8,"title":2},"359":{"body":28,"breadcrumbs":7,"title":1},"36":{"body":30,"breadcrumbs":5,"title":1},"360":{"body":67,"breadcrumbs":7,"title":1},"361":{"body":19,"breadcrumbs":7,"title":1},"362":{"body":25,"breadcrumbs":7,"title":1},"363":{"body":15,"breadcrumbs":8,"title":2},"364":{"body":26,"breadcrumbs":7,"title":1},"365":{"body":72,"breadcrumbs":7,"title":1},"366":{"body":0,"breadcrumbs":11,"title":2},"367":{"body":17,"breadcrumbs":9,"title":1},"368":{"body":0,"breadcrumbs":9,"title":1},"369":{"body":16,"breadcrumbs":9,"title":1},"37":{"body":27,"breadcrumbs":8,"title":4},"370":{"body":93,"breadcrumbs":9,"title":1},"371":{"body":60,"breadcrumbs":9,"title":1},"372":{"body":0,"breadcrumbs":10,"title":2},"373":{"body":125,"breadcrumbs":10,"title":2},"374":{"body":178,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":154,"breadcrumbs":10,"title":2},"377":{"body":115,"breadcrumbs":10,"title":2},"378":{"body":10,"breadcrumbs":9,"title":1},"379":{"body":13,"breadcrumbs":9,"title":1},"38":{"body":23,"breadcrumbs":9,"title":5},"380":{"body":6,"breadcrumbs":9,"title":1},"381":{"body":117,"breadcrumbs":10,"title":2},"382":{"body":17,"breadcrumbs":9,"title":1},"383":{"body":37,"breadcrumbs":9,"title":1},"384":{"body":37,"breadcrumbs":9,"title":1},"385":{"body":3,"breadcrumbs":9,"title":1},"386":{"body":129,"breadcrumbs":9,"title":1},"387":{"body":5,"breadcrumbs":9,"title":2},"388":{"body":28,"breadcrumbs":7,"title":1},"389":{"body":18,"breadcrumbs":7,"title":1},"39":{"body":13,"breadcrumbs":6,"title":2},"390":{"body":5,"breadcrumbs":7,"title":1},"391":{"body":449,"breadcrumbs":9,"title":3},"392":{"body":22,"breadcrumbs":8,"title":2},"393":{"body":22,"breadcrumbs":9,"title":2},"394":{"body":70,"breadcrumbs":8,"title":1},"395":{"body":7,"breadcrumbs":8,"title":1},"396":{"body":8,"breadcrumbs":8,"title":1},"397":{"body":39,"breadcrumbs":9,"title":2},"398":{"body":58,"breadcrumbs":9,"title":2},"399":{"body":23,"breadcrumbs":9,"title":2},"4":{"body":18,"breadcrumbs":5,"title":1},"40":{"body":19,"breadcrumbs":9,"title":3},"400":{"body":19,"breadcrumbs":9,"title":2},"401":{"body":72,"breadcrumbs":9,"title":2},"402":{"body":57,"breadcrumbs":9,"title":2},"403":{"body":7,"breadcrumbs":10,"title":3},"404":{"body":46,"breadcrumbs":9,"title":2},"405":{"body":49,"breadcrumbs":9,"title":2},"406":{"body":25,"breadcrumbs":8,"title":1},"407":{"body":6,"breadcrumbs":9,"title":2},"408":{"body":0,"breadcrumbs":12,"title":4},"409":{"body":26,"breadcrumbs":12,"title":4},"41":{"body":0,"breadcrumbs":7,"title":1},"410":{"body":0,"breadcrumbs":10,"title":2},"411":{"body":10,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":10,"title":2},"413":{"body":13,"breadcrumbs":10,"title":2},"414":{"body":7,"breadcrumbs":11,"title":3},"415":{"body":10,"breadcrumbs":11,"title":3},"416":{"body":10,"breadcrumbs":11,"title":3},"417":{"body":16,"breadcrumbs":9,"title":1},"418":{"body":0,"breadcrumbs":6,"title":2},"419":{"body":36,"breadcrumbs":5,"title":1},"42":{"body":5,"breadcrumbs":7,"title":1},"420":{"body":152,"breadcrumbs":7,"title":3},"421":{"body":94,"breadcrumbs":5,"title":1},"422":{"body":209,"breadcrumbs":6,"title":2},"423":{"body":10,"breadcrumbs":6,"title":2},"424":{"body":176,"breadcrumbs":8,"title":4},"425":{"body":48,"breadcrumbs":7,"title":2},"426":{"body":0,"breadcrumbs":9,"title":2},"427":{"body":5,"breadcrumbs":9,"title":2},"428":{"body":5,"breadcrumbs":9,"title":3},"429":{"body":5,"breadcrumbs":7,"title":2},"43":{"body":10,"breadcrumbs":7,"title":1},"430":{"body":34,"breadcrumbs":6,"title":1},"431":{"body":43,"breadcrumbs":6,"title":1},"432":{"body":19,"breadcrumbs":9,"title":4},"433":{"body":20,"breadcrumbs":8,"title":2},"434":{"body":86,"breadcrumbs":7,"title":1},"435":{"body":3,"breadcrumbs":7,"title":1},"436":{"body":44,"breadcrumbs":9,"title":3},"437":{"body":49,"breadcrumbs":9,"title":3},"438":{"body":21,"breadcrumbs":10,"title":3},"439":{"body":137,"breadcrumbs":8,"title":1},"44":{"body":47,"breadcrumbs":9,"title":3},"440":{"body":3,"breadcrumbs":8,"title":1},"441":{"body":26,"breadcrumbs":10,"title":3},"442":{"body":26,"breadcrumbs":10,"title":3},"443":{"body":42,"breadcrumbs":10,"title":3},"444":{"body":79,"breadcrumbs":10,"title":3},"445":{"body":0,"breadcrumbs":6,"title":2},"446":{"body":0,"breadcrumbs":10,"title":4},"447":{"body":64,"breadcrumbs":7,"title":1},"448":{"body":2658,"breadcrumbs":9,"title":3},"449":{"body":8802,"breadcrumbs":10,"title":4},"45":{"body":67,"breadcrumbs":9,"title":3},"450":{"body":103278,"breadcrumbs":8,"title":2},"451":{"body":225,"breadcrumbs":9,"title":3},"452":{"body":657,"breadcrumbs":7,"title":1},"453":{"body":2925,"breadcrumbs":7,"title":1},"454":{"body":1,"breadcrumbs":7,"title":1},"455":{"body":2,"breadcrumbs":8,"title":2},"456":{"body":252,"breadcrumbs":10,"title":4},"457":{"body":252,"breadcrumbs":10,"title":4},"458":{"body":454,"breadcrumbs":22,"title":16},"459":{"body":87,"breadcrumbs":8,"title":3},"46":{"body":5,"breadcrumbs":8,"title":2},"460":{"body":18,"breadcrumbs":6,"title":1},"461":{"body":81,"breadcrumbs":7,"title":2},"462":{"body":128,"breadcrumbs":8,"title":3},"463":{"body":81,"breadcrumbs":7,"title":2},"464":{"body":0,"breadcrumbs":6,"title":1},"465":{"body":101,"breadcrumbs":9,"title":4},"466":{"body":115,"breadcrumbs":8,"title":3},"467":{"body":53,"breadcrumbs":10,"title":5},"468":{"body":34,"breadcrumbs":7,"title":2},"469":{"body":64,"breadcrumbs":9,"title":4},"47":{"body":340,"breadcrumbs":7,"title":1},"470":{"body":139,"breadcrumbs":8,"title":3},"471":{"body":117,"breadcrumbs":7,"title":2},"472":{"body":73,"breadcrumbs":6,"title":1},"473":{"body":49,"breadcrumbs":6,"title":1},"474":{"body":29,"breadcrumbs":11,"title":6},"475":{"body":124,"breadcrumbs":7,"title":2},"476":{"body":124,"breadcrumbs":8,"title":3},"477":{"body":0,"breadcrumbs":6,"title":2},"478":{"body":5,"breadcrumbs":12,"title":5},"479":{"body":5,"breadcrumbs":14,"title":6},"48":{"body":49,"breadcrumbs":8,"title":2},"480":{"body":5,"breadcrumbs":16,"title":7},"481":{"body":5,"breadcrumbs":14,"title":6},"482":{"body":5,"breadcrumbs":12,"title":5},"483":{"body":5,"breadcrumbs":12,"title":5},"484":{"body":66,"breadcrumbs":6,"title":3},"485":{"body":17,"breadcrumbs":5,"title":2},"486":{"body":18,"breadcrumbs":5,"title":2},"487":{"body":62,"breadcrumbs":4,"title":1},"488":{"body":0,"breadcrumbs":5,"title":2},"489":{"body":15,"breadcrumbs":5,"title":2},"49":{"body":64,"breadcrumbs":7,"title":2},"490":{"body":257,"breadcrumbs":5,"title":2},"491":{"body":168,"breadcrumbs":5,"title":2},"492":{"body":0,"breadcrumbs":6,"title":3},"493":{"body":0,"breadcrumbs":5,"title":2},"494":{"body":0,"breadcrumbs":4,"title":1},"495":{"body":0,"breadcrumbs":5,"title":2},"496":{"body":0,"breadcrumbs":8,"title":4},"497":{"body":49,"breadcrumbs":5,"title":1},"498":{"body":75,"breadcrumbs":5,"title":1},"499":{"body":42,"breadcrumbs":6,"title":2},"5":{"body":12,"breadcrumbs":8,"title":2},"50":{"body":13,"breadcrumbs":7,"title":2},"500":{"body":34,"breadcrumbs":5,"title":1},"501":{"body":25,"breadcrumbs":5,"title":1},"502":{"body":13,"breadcrumbs":6,"title":2},"503":{"body":27,"breadcrumbs":6,"title":2},"504":{"body":42,"breadcrumbs":6,"title":2},"505":{"body":41,"breadcrumbs":7,"title":3},"506":{"body":26,"breadcrumbs":7,"title":3},"507":{"body":37,"breadcrumbs":5,"title":1},"508":{"body":46,"breadcrumbs":6,"title":3},"509":{"body":16,"breadcrumbs":6,"title":3},"51":{"body":17,"breadcrumbs":6,"title":1},"510":{"body":5,"breadcrumbs":2,"title":1},"52":{"body":11,"breadcrumbs":6,"title":1},"53":{"body":50,"breadcrumbs":6,"title":1},"54":{"body":0,"breadcrumbs":11,"title":4},"55":{"body":39,"breadcrumbs":9,"title":2},"56":{"body":59,"breadcrumbs":10,"title":3},"57":{"body":54,"breadcrumbs":10,"title":3},"58":{"body":12,"breadcrumbs":5,"title":1},"59":{"body":188,"breadcrumbs":6,"title":2},"6":{"body":0,"breadcrumbs":8,"title":2},"60":{"body":0,"breadcrumbs":5,"title":1},"61":{"body":25,"breadcrumbs":6,"title":2},"62":{"body":34,"breadcrumbs":8,"title":4},"63":{"body":37,"breadcrumbs":5,"title":1},"64":{"body":81,"breadcrumbs":5,"title":1},"65":{"body":4,"breadcrumbs":5,"title":1},"66":{"body":7,"breadcrumbs":6,"title":2},"67":{"body":13,"breadcrumbs":6,"title":2},"68":{"body":70,"breadcrumbs":5,"title":1},"69":{"body":44,"breadcrumbs":6,"title":2},"7":{"body":18,"breadcrumbs":7,"title":1},"70":{"body":9,"breadcrumbs":7,"title":2},"71":{"body":68,"breadcrumbs":8,"title":3},"72":{"body":206,"breadcrumbs":7,"title":2},"73":{"body":329,"breadcrumbs":7,"title":2},"74":{"body":29,"breadcrumbs":7,"title":2},"75":{"body":99,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":38,"breadcrumbs":6,"title":1},"78":{"body":0,"breadcrumbs":5,"title":1},"79":{"body":9,"breadcrumbs":5,"title":1},"8":{"body":19,"breadcrumbs":7,"title":1},"80":{"body":25,"breadcrumbs":5,"title":1},"81":{"body":38,"breadcrumbs":5,"title":1},"82":{"body":15,"breadcrumbs":5,"title":1},"83":{"body":27,"breadcrumbs":7,"title":3},"84":{"body":43,"breadcrumbs":6,"title":2},"85":{"body":37,"breadcrumbs":6,"title":2},"86":{"body":13,"breadcrumbs":6,"title":2},"87":{"body":25,"breadcrumbs":7,"title":3},"88":{"body":4,"breadcrumbs":5,"title":1},"89":{"body":58,"breadcrumbs":9,"title":5},"9":{"body":30,"breadcrumbs":7,"title":1},"90":{"body":122,"breadcrumbs":7,"title":3},"91":{"body":49,"breadcrumbs":9,"title":5},"92":{"body":620,"breadcrumbs":8,"title":4},"93":{"body":4,"breadcrumbs":8,"title":4},"94":{"body":52,"breadcrumbs":7,"title":3},"95":{"body":79,"breadcrumbs":7,"title":3},"96":{"body":4,"breadcrumbs":5,"title":1},"97":{"body":3,"breadcrumbs":5,"title":1},"98":{"body":33,"breadcrumbs":5,"title":1},"99":{"body":0,"breadcrumbs":5,"title":1}},"docs":{"0":{"body":"Draft The Catalyst-Core Documentation is currently undergoing review and re-write. This documentation is published AS-IS. There is no guarantee that it is correct with regards to the current implementation. The source of all truth with regards to the implementation is the source code. Patches to improve the documentation are very welcome. See Contributing . Found a bug? Edit this page on GitHub.","breadcrumbs":"Prologue » Prologue","id":"0","title":"Prologue"},"1":{"body":"","breadcrumbs":"Introduction » Introduction","id":"1","title":"Introduction"},"10":{"body":"The blockchain is the general set of rules and the blocks that are periodically created. Some of the rules and settings, can be changed dynamically in the system by updates, while some other are hardcoded in the genesis block (first block of the blockchain). +-------+ +-------+ |Genesis+<-----+Block 1+<--- .... |Header | |Header | +---+---+ +---+---+ | | +---v---+ +---v---+ |Genesis| |Block 1| |Content| |Content| +-------+ +-------+","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain","id":"10","title":"Blockchain"},"100":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin or equivantely cat genesis.yaml | jcli genesis encode > block-0.bin","breadcrumbs":"Core Ledger » jcli » Genesis » Encode a genesis file","id":"100","title":"Encode a genesis file"},"101":{"body":"jcli genesis hash --input block-0.bin Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Genesis » Get the hash of an encoded genesis file","id":"101","title":"Get the hash of an encoded genesis file"},"102":{"body":"There are multiple type of key for multiple use cases. type usage ed25519 Signing algorithm for Ed25519 algorithm ed25519-bip32 Related to the HDWallet, Ed25519 Extended with chain code for derivation ed25519-extended Related to Ed25519Bip32 without the chain code sum-ed25519-12 For stake pool, necessary for the KES ristretto-group2-hash-dh For stake pool, necessary for the VRF There is a command line parameter to generate this keys: $ jcli key generate --type=Ed25519\ned25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt and to extract the associated public key: $ echo ed25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt | jcli key to-public\ned25519_pk1z2ffur59cq7t806nc9y2g64wa60pg5m6e9cmrhxz9phppaxk5d4sn8nsqg","breadcrumbs":"Core Ledger » jcli » cryptographic keys » cryptographic keys","id":"102","title":"cryptographic keys"},"103":{"body":"Sign data with private key. Supported key formats are: ed25519, ed25519-bip32, ed25519-extended and sumed25519_12. jcli key sign The options are –secret-key - path to file with bech32-encoded secret key -o, –output - path to file to write signature into, if no value is passed, standard output will be used - path to file with data to sign, if no value is passed, standard input will be used","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Signing data","id":"103","title":"Signing data"},"104":{"body":"Verify signed data with public key. Supported key formats are: ed25519, ed25519bip32 and sumed25519_12. jcli key verify The options are –public-key - path to file with bech32-encoded public key –signature - path to file with signature - path to file with data to sign, if no value is passed, standard input will be used Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Verifying signed data","id":"104","title":"Verifying signed data"},"105":{"body":"Jormungandr comes with a CLI client for manual communication with nodes over HTTP.","breadcrumbs":"Core Ledger » jcli » REST » REST","id":"105","title":"REST"},"106":{"body":"Many CLI commands have common arguments: -h or --host - Node API address. Must always have http:// or https:// prefix and always ends with the /api. E.g. -h http://127.0.0.1:8081/api, --host https://node.com:8443/cardano/api. --debug - Print additional debug information to stderr. The output format is intentionally undocumented and unstable --output-format - Format of output data. Possible values: json, yaml, default yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ .","breadcrumbs":"Core Ledger » jcli » REST » Conventions","id":"106","title":"Conventions"},"107":{"body":"Fetches node stats jcli rest v0 node stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# Number of blocks received by node\nblockRecvCnt: 1102\n# Size in bytes of all transactions in last block\nlastBlockContentSize: 484\n# The Epoch and slot Number of the block (optional)\nlastBlockDate: \"20.29\"\n# Sum of all fee values in all transactions in last block\nlastBlockFees: 534\n# The block hash, it's unique identifier in the blockchain (optional)\nlastBlockHash: b9597b45a402451540e6aabb58f2ee4d65c67953b338e04c52c00aa0886bd1f0\n# The block number, in order, since the block0 (optional)\nlastBlockHeight: 202901\n# Sum of all input values in all transactions in last block\nlastBlockSum: 51604\n# The time slot of the tip block\nlastBlockTime: \"2020-01-30T22:37:46+00:00\"\n# Number of transactions in last block\nlastBlockTx: 2\n# The time at which we received the last block, not necessarily the current tip block (optional)\nlastReceivedBlockTime: \"2020-01-30T22:37:59+00:00\"\n# 24 bytes encoded in hexadecimal Node ID\nnodeId: \"ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d\"\n# Number of nodes that are available for p2p discovery and events propagation\npeerAvailableCnt: 321\n# Number of nodes that have been quarantined by our node\npeerQuarantinedCnt: 123\n# Total number of nodes\npeerTotalCnt: 444\n# Number of nodes that are connected to ours but that are not publicly reachable\npeerUnreachableCnt: 0\n# State of the node\nstate: Running\n# Number of transactions received by node\ntxRecvCnt: 5440\n# Node uptime in seconds\nuptime: 20032\n# Node app version\nversion: jormungandr 0.8.9-30d20d2e","breadcrumbs":"Core Ledger » jcli » REST » Node stats","id":"107","title":"Node stats"},"108":{"body":"Fetches UTxO details jcli rest v0 utxo get - hex-encoded ID of the transaction fragment - index of the transaction output The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# UTxO owner address\naddress: ca1svs0mwkfky9htpam576mc93mee5709khre8dgnqslj6y3p5f77s5gpgv02w\n# UTxO value\nvalue: 10000","breadcrumbs":"Core Ledger » jcli » REST » Get UTxO","id":"108","title":"Get UTxO"},"109":{"body":"Posts a signed, hex-encoded transaction jcli rest v0 message post The options are -h - see conventions –debug - see conventions -f –file - File containing hex-encoded transaction. If not provided, transaction will be read from stdin. Fragment Id is printed on success (which can help finding transaction status using get message log command) 50f21ac6bd3f57f231c4bf9c5fff7c45e2529c4dffed68f92410dbf7647541f1","breadcrumbs":"Core Ledger » jcli » REST » Post transaction","id":"109","title":"Post transaction"},"11":{"body":"The node currently support the following consensus protocol: Ouroboros BFT (OBFT) Ouroboros Genesis-Praos Ouroboros BFT is a simple Byzantine Fault Tolerant (BFT) protocol where the block makers is a known list of leaders that successively create a block and broadcast it on the network. Ouroboros Genesis Praos is a proof of stake (PoS) protocol where the block maker is made of a lottery where each stake pool has a chance proportional to their stake to be elected to create a block. Each lottery draw is private to each stake pool, so that the overall network doesn’t know in advance who can or cannot create blocks. In Genesis-Praos slot time duration is constant, however the frequency of creating blocks is not stable, since the creation of blocks is a probability that is linked to the stake and consensus_genesis_praos_active_slot_coeff. Note : In Genesis-Praos, if there is no stake in the system, no blocks will be created anymore starting with the next epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Consensus","id":"11","title":"Consensus"},"110":{"body":"Get the node’s logs on the message pool. This will provide information on pending transaction, rejected transaction and or when a transaction has been added in a block jcli rest v0 message logs The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- fragment_id: 7db6f91f3c92c0aef7b3dd497e9ea275229d2ab4dba6a1b30ce6b32db9c9c3b2 # hex-encoded fragment ID last_updated_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of last fragment status change received_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of fragment receivement received_from: Network, # how fragment was received status: Pending, # fragment status received_from can be one of: received_from: Rest # fragment was received from node's REST API received_from: Network # fragment was received from the network status can be one of: status: Pending # fragment is pending status: Rejected: # fragment was rejected reason: reason of rejection # cause status: # fragment was included in a block InABlock: date: \"6637.3\" # block epoch and slot ID formed as . block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\"","breadcrumbs":"Core Ledger » jcli » REST » Get message log","id":"110","title":"Get message log"},"111":{"body":"Retrieves a hex-encoded ID of the blockchain tip jcli rest v0 tip get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Blockchain tip","id":"111","title":"Blockchain tip"},"112":{"body":"Retrieves a hex-encoded block with given ID jcli rest v0 block get - hex-encoded block ID The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Get block","id":"112","title":"Get block"},"113":{"body":"Retrieves a list of hex-encoded IDs of descendants of block with given ID. Every list element is in separate line. The IDs are sorted from closest to farthest. jcli rest v0 block next-id get - hex-encoded block ID The options are -h - see conventions –debug - see conventions -c –count - Maximum number of IDs, must be between 1 and 100, default 1","breadcrumbs":"Core Ledger » jcli » REST » Get next block ID","id":"113","title":"Get next block ID"},"114":{"body":"Get account state jcli rest v0 account get - ID of an account, bech32-encoded The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ncounter: 1\ndelegation: c780f14f9782770014d8bcd514b1bc664653d15f73a7158254730c6e1aa9f356\nvalue: 990 value is the current balance of the account; counter is the number of transactions performed using this account this is useful to know when signing new transactions; delegation is the Stake Pool Identifier the account is delegating to. it is possible this value is not set if there is no delegation certificate sent associated to this account.","breadcrumbs":"Core Ledger » jcli » REST » Get account state","id":"114","title":"Get account state"},"115":{"body":"Fetches node settings jcli rest v0 settings get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\nblock0Hash: 8d94ecfcc9a566f492e6335858db645691f628b012bed4ac2b1338b5690355a7 # block 0 hash of\nblock0Time: \"2019-07-09T12:32:51+00:00\" # block 0 creation time of\nblockContentMaxSize: 102400 # the block content's max size in bytes\nconsensusVersion: bft # currently used consensus\ncurrSlotStartTime: \"2019-07-09T12:55:11+00:00\" # current slot start time\nepochStabilityDepth: 102400 # the depth, number of blocks, to which we consider the blockchain to # be stable and prevent rollback beyond that depth\nfees: # transaction fee configuration certificate: 4 # fee per certificate coefficient: 1 # fee per every input and output constant: 2 # fee per transaction per_certificate_fees: # fee per certificate operations, all zero if this object absent (optional) certificate_pool_registration: 5 # fee per pool registration, zero if absent (optional) certificate_stake_delegation: 15 # fee per stake delegation, zero if absent (optional) certificate_owner_stake_delegation: 2 # fee per pool owner stake delegation, zero if absent (optional)\nrewardParams: # parameters for rewards calculation compoundingRatio: # speed at which reward is reduced. Expressed as numerator/denominator denominator: 1024 numerator: 1 compoundingType: Linear # reward reduction algorithm. Possible values: \"Linear\" and \"Halvening\" epochRate: 100 # number of epochs between reward reductions epochStart: 0 # epoch when rewarding starts initialValue: 10000 # initial reward\nslotDuration: 5 # slot duration in seconds\nslotsPerEpoch: 720 # number of slots per epoch\ntreasuryTax: # tax from reward that goes to pot fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)","breadcrumbs":"Core Ledger » jcli » REST » Node settings","id":"115","title":"Node settings"},"116":{"body":"Node shutdown jcli rest v0 shutdown get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Node shutdown","id":"116","title":"Node shutdown"},"117":{"body":"Fetches list of leader IDs jcli rest v0 leaders get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 1 # list of leader IDs\n- 2","breadcrumbs":"Core Ledger » jcli » REST » Get leaders","id":"117","title":"Get leaders"},"118":{"body":"Register new leader and get its ID jcli rest v0 leaders post The options are -h - see conventions –debug - see conventions –output-format - see conventions -f, –file - File containing YAML with leader secret. It must have the same format as secret YAML passed to Jormungandr as –secret. If not provided, YAML will be read from stdin. On success created leader ID is printed 3","breadcrumbs":"Core Ledger » jcli » REST » Register leader","id":"118","title":"Register leader"},"119":{"body":"Delete leader with given ID jcli rest v0 leaders delete - ID of deleted leader The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Delete leader","id":"119","title":"Delete leader"},"12":{"body":"The leadership represent in abstract term, who are the overall leaders of the system and allow each individual node to check that specific blocks are lawfully created in the system. The leadership is re-evaluated at each new epoch and is constant for the duration of an epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leadership","id":"12","title":"Leadership"},"120":{"body":"Fetches leadership logs jcli rest v0 leaders logs get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- created_at_time: \"2019-08-19T12:25:00.417263555+00:00\" enclave_leader_id: 1 finished_at_time: \"2019-08-19T23:19:05.010113333+00:00\" scheduled_at_date: \"0.3923\" scheduled_at_time: \"2019-08-19T23:18:35+00:00\" wake_at_time: \"2019-08-19T23:18:35.001254555+00:00\" status: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 Different value for the status: # meaning the action is still pending to happen\nstatus: Pending # meaning the action successfully create the given block with the given hash and parent\nstatus: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 # meaning the event has failed for some reasons\nstatus: Rejected: reason: \"Missed the deadline to compute the schedule\"","breadcrumbs":"Core Ledger » jcli » REST » Get leadership logs","id":"120","title":"Get leadership logs"},"121":{"body":"Fetches list of stake pool IDs jcli rest v0 stake-pools get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # list of stake pool IDs\n- 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615","breadcrumbs":"Core Ledger » jcli » REST » Get stake pools","id":"121","title":"Get stake pools"},"122":{"body":"Fetches stake information jcli rest v0 stake get [] - Epoch to get the stake distribution from. (optional) The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success jcli rest v0 stake get - stake distribution from the current epoch ---\nepoch: 228 # Epoch of last block\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool jcli rest v0 stake get 10 - stake distribution from a specific epoch (epoch 10 in this example) ---\nepoch: 10 # Epoch specified in the request\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool","breadcrumbs":"Core Ledger » jcli » REST » Get stake distribution","id":"122","title":"Get stake distribution"},"123":{"body":"Fetches network stats jcli rest v0 network stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- # node address (optional) addr: \"3.124.55.91:3000\" # hex-encoded node ID nodeId: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 # timestamp of when the connection was established establishedAt: \"2019-10-14T06:24:12.010231281+00:00\" # timestamp of last time block was received from node if ever (optional) lastBlockReceived: \"2019-10-14T00:45:57.419496113+00:00\" # timestamp of last time fragment was received from node if ever (optional) lastFragmentReceived: \"2019-10-14T00:45:58.419496150+00:00\" # timestamp of last time gossip was received from node if ever (optional) lastGossipReceived: \"2019-10-14T00:45:59.419496188+00:00\"","breadcrumbs":"Core Ledger » jcli » REST » Network stats","id":"123","title":"Network stats"},"124":{"body":"Fetches stake pool details jcli rest v0 stake-pool get - hex-encoded pool ID The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ntax: # pool reward fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)\ntotal_stake: 2000000000000 # total stake pool value\n# bech32-encoded stake pool KES key\nkesPublicKey: kes25519-12-pk1q7susucqwje0lpetqzjgzncgcrjzx7e2guh900qszdjskkeyqpusf3p39r\n# bech32-encoded stake pool VRF key\nvrfPublicKey: vrf_pk1rcm4qm3q9dtwq22x9a4avnan7a3k987zvepuxwekzj3uyu6a8v0s6sdy0l","breadcrumbs":"Core Ledger » jcli » REST » Get stake pool details","id":"124","title":"Get stake pool details"},"125":{"body":"Get the rewards history of a given epoch . jcli rest v0 rewards epoch get - epoch number to get the rewards history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards epoch get 82 -h [ { \"epoch\": 82, // the epoch number to collect rewards info from (rewards are from epoch 81) \"drawn\": 3835616440000, // Total Drawn from reward escrow pot for the epoch \"fees\": 1828810000, // Fees contributed into the pot the epoch \"treasury\": 462179124139, // Value added to the treasury \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1683091391, // pool's owned rewards from taxes 32665712521 // distributed rewards to delegators ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 47706672, 906426770 ], }, \"accounts\": { \"ed25519_pk1qqq6r7r7medu2kdpvdra5kwh8uz9frvftm9lf25shm7ygx9ayvss0nqke9\": 427549785, // Amount added to each account \"ed25519_pk1qqymlwehsztpzhy2k4szkp7j0xk0ra35jyxcpgr9p9q4ngvzzc5q4sh2gm\": 24399360, \"ed25519_pk1qq9h62jv6a0mz36xgecjrz9tm8z6ay3vj4d64ashxkgxcyhjewwsvgvelj\": 22449169, \"ed25519_pk1qq9l2qrqazk5fp4kt2kvjtsjc32g0ud888um8k2pvms0cw2r0uzsute83u\": 1787992, \"ed25519_pk1qqx6h559ee7pa67dm255d0meekt6dmq6857x302wdwrhzv47z9hqucdnt2\": 369024, } }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for a specific epoch","id":"125","title":"Get rewards history for a specific epoch"},"126":{"body":"Get the rewards history of the length last epoch(s) from tip. jcli rest v0 rewards history get - number of epochs, starting from the last epoch from tip, to get the reward history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards history get 2 -h [ { \"epoch\": 93, \"drawn\": 3835616440000, \"fees\": 641300000, \"treasury\": 467151470296, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1121750881, 21771124247 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 429241408, 8155586765 ], \"01bd272cede02d0b0c9cd47b16e5356ab3fb2330dd9d1e972ab5494365309d2a\": [ 1691506850, 32829041110 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 33311805, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 15809, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 10007789, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 545094806, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 4208232, }, }, { \"epoch\": 92, \"drawn\": 3835616440000, \"fees\": 620400000, \"treasury\": 480849578351, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 979164601, 19003786459 ], \"0105449dd66524111349ef677d1ebc25247a5ba2d094913f52aa4db265eac03a\": [ 26977274, 972170279 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 299744265, 5695141053 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 40581616, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 49156, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 12306084, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 142737175, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 3932910, }, }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for some epochs","id":"126","title":"Get rewards history for some epochs"},"127":{"body":"Get the list of voting committee members. jcli rest v0 vote active committees get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19 # list of members\n- f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db","breadcrumbs":"Core Ledger » jcli » REST » Get voting committee members","id":"127","title":"Get voting committee members"},"128":{"body":"Get the list of active voting plans and proposals. jcli rest v0 vote active plans get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- committee_end: epoch: 10 slot_id: 0 proposals: - external_id: adb92757155d09e7f92c9f100866a92dddd35abd2a789a44ae19ab9a1dbc3280 options: OneOf: max_value: 3 - external_id: 6778d37161c3962fe62c9fa8a31a55bccf6ec2d1ea254a467d8cd994709fc404 options: OneOf: max_value: 3 vote_end: epoch: 5 slot_id: 0 vote_start: epoch: 1 slot_id: 0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » REST » Get active voting plans and proposals","id":"128","title":"Get active voting plans and proposals"},"129":{"body":"Tooling for offline transaction creation and signing. jcli transaction Those familiar with cardano-cli transaction builder will see resemblance in jcli transaction. There is a couple of commands that can be used to: prepare a transaction: new create a new empty transaction; add-input add-account add-output finalize the transaction for signing: create witnesses and add the witnesses: make-witness add-witness seal the transaction, ready to send to the blockchain auth the transaction, if it contains a certificate There are also functions to help decode and display the content information of a transaction: info displays summary of transaction being constructed data-for-witness get the data to sign from a given transaction fragment-id get the Fragment ID from a transaction in sealed state to-message to get the hexadecimal encoded message, ready to send with cli rest message DEPRECATED : id get the data to sign from a given transaction (use data-for-witness instead)","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction","id":"129","title":"Transaction"},"13":{"body":"Leader are an abstraction related to the specific actor that have the ability to create block; In OBFT mode, the leader just the owner of a cryptographic key, whereas in Genesis-Praos mode, the leader is a stake pool.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leader","id":"13","title":"Leader"},"130":{"body":"On every stage of building a transaction user can display its summary jcli transaction info The options are: --prefix - set the address prefix to use when displaying the addresses (default: ca) --fee-certificate - fee per certificate (default: 0) --fee-coefficient - fee per every input and output (default: 0) --fee-constant - fee per transaction (default: 0) --fee-owner-stake-delegation - fee per owner stake delegation (default: fee-certificate) --fee-pool-registration - fee per pool registration (default: fee-certificate) --fee-stake-delegation - fee per stake delegation (default: fee-certificate) --fee-vote-cast - fee per vote cast --fee-vote-plan - fee per vote plan --output-format - Format of output data. Possible values: json, yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ . (default: yaml) --output - write the info in the given file or print it to the standard output --staging - place where the transaction is going to be saved during its staging phase. If a file is given, the transaction will be read from this file and modification will be written into this same file. If no file is given, the transaction will be read from the standard input and will be rendered in the standard output. YAML printed on success ---\nbalance: 40 # transaction balance or how much input is not spent\nfee: 60 # total fee for transaction\ninput: 200 # total input of transaction\ninputs: # list of transaction inputs, each can be of either \"utxo\" or \"account\" kind - index: 4 # index of transaction output kind: utxo # constant value, signals that UTxO is used # hex-encoded ID of transaction txid: 543326b2739356ab6d14624a536ca696f1020498b36456b7fdfe8344c084bfcf value: 130 # value of transaction output - # hex-encoded account address account: 3fd45a64ae5a3b9c35e37114baa099b8b01285f7d74b371597af22d5ff393d9f kind: account # constant value, signals that account is used value: 70 # value taken from account\nnum_inputs: 1 # total number of inputs of transaction\nnum_outputs: 1 # total number of outputs of transaction\nnum_witnesses: 1 # total number of witnesses of transaction\noutput: 100 # total output of transaction\noutputs: # list of transaction outputs - # bech32-encoded address address: ca1swedukl830v26m8hl7e5dzrjp77yctuz79a68r8jl2l79qnpu3uwz0kg8az value: 100 # value sent to address # hex-encoded transaction hash, when transaction is complete, it's also its ID\nsign_data_hash: 26be0b8bd7e34efffb769864f00d7c4aab968760f663a7e0b3ce213c4b21651b\nstatus: sealed # transaction status, can be \"balancing\", \"finalizing\", \"sealed\" or \"authed\"","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction info","id":"130","title":"Transaction info"},"131":{"body":"The following example focuses on using an utxo as input, the few differences when transfering from an account will be pointed out when necessary. Also, the simplified make-transaction command in jcli covers all this process. For more information run: jcli transaction make-transaction --help Let’s use the following utxo as input and transfer 50 lovelaces to the destination address","breadcrumbs":"Core Ledger » jcli » Transaction » Examples","id":"131","title":"Examples"},"132":{"body":"Field Value UTXO’s transaction ID 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c UTXO’s output index 0 associated address ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu associated value 100","breadcrumbs":"Core Ledger » jcli » Transaction » Input utxo","id":"132","title":"Input utxo"},"133":{"body":"address : ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6","breadcrumbs":"Core Ledger » jcli » Transaction » Destination address","id":"133","title":"Destination address"},"134":{"body":"jcli transaction new --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Create a staging area","id":"134","title":"Create a staging area"},"135":{"body":"For the input, we need to reference the utxo with the UTXO’s transaction ID and UTXO’S output index fields. We also need to specify how many coins there are with the associated value field.","breadcrumbs":"Core Ledger » jcli » Transaction » Add input","id":"135","title":"Add input"},"136":{"body":"jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 100 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - UTXO address as Input","id":"136","title":"Example - UTXO address as Input"},"137":{"body":"If the input is an account, the command is slightly different jcli transaction add-account account_address account_funds --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - Account address as Input","id":"137","title":"Example - Account address as Input"},"138":{"body":"For the output, we need the address we want to transfer to, and the amount. jcli transaction add-output ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 50 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add output","id":"138","title":"Add output"},"139":{"body":"We want to get the change in the same address that we are sending from (the associated address of the utxo). We also specify how to compute the fees. You can leave out the --fee-constant 5 --fee-coefficient 2 part if those are both 0. jcli transaction finalize ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu --fee-constant 5 \\ --fee-coefficient 2 --staging tx Now, if you run jcli transaction info --fee-constant 5 --fee-coefficient 2 --staging tx You should see something like this ---\nbalance: 0\nfee: 11\ninput: 100\ninputs: - index: 0 kind: utxo txid: 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c value: 100\nnum_inputs: 1\nnum_outputs: 2\nnum_witnesses: 0\noutput: 89\noutputs: - address: ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 value: 50 - address: ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu value: 39\nsign_data_hash: 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273\nstatus: finalizing","breadcrumbs":"Core Ledger » jcli » Transaction » Add fee and change address","id":"139","title":"Add fee and change address"},"14":{"body":"Transaction forms the cornerstone of the blockchain, and is one type of fragment and also the most frequent one. Transaction is composed of inputs and outputs; On one side, the inputs represent coins being spent, and on the other side the outputs represent coins being received. Inputs Alice (80$) Bob (20$) \\ / \\ / ----------- 100$ --------- / \\ Outputs Charlie (50$) Dan (50$) Transaction have fees that are defined by the blockchain settings and the following invariant hold: \\( \\sum Inputs = \\sum Outputs + fees \\) Transaction need to be authorized by each of the inputs in the transaction by their respective witness. In the most basic case, a witness is a cryptographic signature, but depending on the type of input can the type of witness vary.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Transaction","id":"14","title":"Transaction"},"140":{"body":"","breadcrumbs":"Core Ledger » jcli » Transaction » Sign the transaction","id":"140","title":"Sign the transaction"},"141":{"body":"For signing the transaction, you need: the hash of the genesis block of the network you are connected to. the private key associated with the input address (the one that’s in the utxos). the hash of the transaction, that can be retrieved in two ways: sign_data_hash value from jcli transaction info --staging tx or jcli transaction data-for-witness --staging tx The genesis’ hash is needed for ensuring that the transaction: cannot be re-used in another blockchain and for security concerns on offline transaction signing, as we are signing the transaction for the specific blockchain started by this block0 hash. First we need to get the hash of the transaction we are going to sign. jcli transaction data-for-witness --staging tx You should see something like this (the value may be different since it depends on the input/output data) 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 The following command takes the private key in the key.prv file and creates a witness in a file named witness in the current directory. jcli transaction make-witness --genesis-block-hash abcdef987654321... \\ --type utxo 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv Account input When using an account as input, the command takes account as the type and an additional parameter: --account-spending-counter, that should be increased every time the account is used as input. e.g. jcli transaction make-witness --genesis-block-hash abcdef987654321... --type account --account-spending-counter 0 \\ 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv","breadcrumbs":"Core Ledger » jcli » Transaction » Make witness","id":"141","title":"Make witness"},"142":{"body":"jcli transaction add-witness witness --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add witness","id":"142","title":"Add witness"},"143":{"body":"jcli transaction seal --staging tx jcli transaction to-message --staging tx > txmsg Send it using the rest api jcli rest v0 message post -f txmsg --host http://127.0.0.1:8443/api You should get some data back referring to the TransactionID (also known as FragmentID) d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2","breadcrumbs":"Core Ledger » jcli » Transaction » Send the transaction","id":"143","title":"Send the transaction"},"144":{"body":"You can check if the transaction was accepted by checking the node logs, for example, if the transaction is accepted jcli rest v0 message logs -h http://127.0.0.1:8443/api ---\n- fragment_id: d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2 last_updated_at: \"2019-06-11T15:38:17.070162114Z\" received_at: \"2019-06-11T15:37:09.469101162Z\" received_from: Rest status: InABlock: date: \"4.707\" block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\" Where the InABlock status means that the transaction was accepted in the block with date “4.707” and for block d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174. The status here could also be: Pending : if the transaction is received and is pending being added in the blockchain (or rejected). or Rejected : with an attached message of the reason the transaction was rejected. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Transaction » Checking if the transaction was accepted","id":"144","title":"Checking if the transaction was accepted"},"145":{"body":"Jormungandr supports decentralized voting with privacy features. The voting process is controlled by a committee whose private keys can be used to decrypt and certify the tally.","breadcrumbs":"Core Ledger » jcli » Voting » Voting","id":"145","title":"Voting"},"146":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Creating committee keys","id":"146","title":"Creating committee keys"},"147":{"body":"Please refer to jcli votes committee --help for help with the committee related cli operations and specification of arguments. In this example we will be using 3 kind of keys for the private vote and tallying. In order: Committee communication key jcli votes committee communication-key generate > ./comm.sk We can get its public representation with: jcli votes committee communication-key to-public --input ./comm.sk > ./comm.pk Committee member key jcli votes committee member-key generate --threshold 3 --crs \"$crs\" --index 0 --keys pk1 pk2 pk3 > ./member.sk Where pkX are each of the committee communication public keys in bech32 format. The order of the keys shall be the same for every member invoking the command, and the --index parameter provides the 0-based index of the member this key is generated for. Note that all committee members shall use the same CRS . We can also easily get its public representation as before: jcli votes committee member-key to-public --input ./member.sk ./member.pk Election public key This key ( public ) is the key every vote should be encrypted with. jcli votes election-key --keys mpk1 mpk2 mpk3 > ./vote.pk Notice that we can always rebuild this key with the committee member public keys found within the voteplan certificate . jcli rest v0 vote active plans > voteplan.json","breadcrumbs":"Core Ledger » jcli » Voting » Private","id":"147","title":"Private"},"148":{"body":"We need to provide a vote plan definition file to generate a new voteplan certificate. That file should be a yaml (or json) with the following format: { \"payload_type\": \"private\", \"vote_start\": { \"epoch\": 1, \"slot_id\": 0 }, \"vote_end\": { \"epoch\": 3, \"slot_id\": 0 }, \"committee_end\": { \"epoch\": 6, \"slot_id\": 0 }, \"proposals\": [ { \"external_id\": \"d7fa4e00e408751319c3bdb84e95fd0dcffb81107a2561e691c33c1ae635c2cd\", \"options\": 3, \"action\": \"off_chain\" }, ... ], \"committee_member_public_keys\": [ \"pk....\", ]\n} Where: payload_type is either public or private commitee_public_keys is only needed for private voting, can be empty for public. Then, we can generate the voteplan certificate with: jcli certificate new vote-plan voteplan_def.json --output voteplan.certificate","breadcrumbs":"Core Ledger » jcli » Voting » Creating a vote plan","id":"148","title":"Creating a vote plan"},"149":{"body":"To generate a vote cast transaction: firstly you need to generate vote-cast certificate following this instructions . Storing it into the ’vote-cast.certificate` now you can generate a transaction following this intructions . Note that a valid vote cast transaction MUST have only: one input with the corresponding account of the voter zero outputs 1 corresponding witness. Example (voter.sk contains a private key of the voter): genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\nvoter_addr=$(jcli address account $(jcli key to-public < voter.sk))\nvoter_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-cast public --choice 0 --proposal-index 0 --vote-plan-id \"$vote_plan_id\" --output vote-cast.certificate\njcli transaction new --staging vote-cast.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-cast.staging\njcli transaction add-certificate $(< vote-cast.certificate) --staging vote-cast.staging\njcli transaction finalize --staging vote-cast.staging\njcli transaction data-for-witness --staging vote-cast.staging > vote-cast.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter\n\"$voter_addr_counter\" $(< vote-cast.witness-data) vote-cast.witness committee.sk\njcli transaction seal --staging vote-cast.staging\njcli transaction to-message --staging vote-cast.staging > vote-cast.fragment\njcli rest v0 message post --file vote-cast.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Casting votes","id":"149","title":"Casting votes"},"15":{"body":"The blockchain has two methods of accounting which are interoperable: Unspent Transaction Output (UTXO) Accounts UTXO behaves like cash/notes, and work like fixed denomination ticket that are cumulated. This is the accounting model found in Bitcoin. A UTXO is uniquely reference by its transaction ID and its index. Accounts behaves like a bank account, and are simpler to use since exact amount can be used. This is the accounting model found in Ethereum. An account is uniquely identified by its public key. Each inputs could refer arbitrarily to an account or a UTXO, and similarly each outputs could refer to an account or represent a new UTXO. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Accounting","id":"15","title":"Accounting"},"150":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Tallying","id":"150","title":"Tallying"},"151":{"body":"To tally public votes, a single committee member is sufficient. In the example below, the file committee.sk contains the committee member’s private key in bech32 format, and block0.bin contains the genesis block of the voting chain. genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\ncommittee_addr=$(jcli address account $(jcli key to-public < committee.sk))\ncommittee_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-tally --vote-plan-id \"$vote_plan_id\" --output vote-tally.certificate\njcli transaction new --staging vote-tally.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-tally.staging\njcli transaction add-certificate $(< vote-tally.certificate) --staging vote-tally.staging\njcli transaction finalize --staging vote-tally.staging\njcli transaction data-for-witness --staging vote-tally.staging > vote-tally.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter \\ \"$committee_addr_counter\" $(< vote-tally.witness-data) vote-tally.witness committee.sk\njcli transaction add-witness --staging vote-tally.staging vote-tally.witness\njcli transaction seal --staging vote-tally.staging\njcli transaction auth --staging vote-tally.staging --key committee.sk\njcli transaction to-message --staging vote-tally.staging > vote-tally.fragment\njcli rest v0 message post --file vote-tally.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Public vote plan","id":"151","title":"Public vote plan"},"152":{"body":"To tally private votes, all committee members are needed. The process is similar to the public one, but we need to issue different certificates. First, we need to retrieve vote plans info: jcli rest v0 vote active plans > active_plans.json If there is more than one vote plan in the file, we also need to provide the id of the vote plan we are interested in. We can get the id of the first vote plan with: ...\nvote_plan_id=$(cat active_plans.json |jq '.[0].id')\n... Each committee member needs to generate their shares for the vote plan, which we will use later to decrypt the tally. jcli votes tally decryption-shares --vote-plan active_plans.json --vote-plan-id $\"vote_plan_id\" --key member.sk --output-format json Then, the committee members need to exchange their shares (only one full set of shares is needed). Once all shares are available, we need to merge them in a single file with the following command (needed even if there is only one set of shares): jcli votes tally merge-shares share_file1 share_file2 ... > merged_shares.json With the merged shares file, we are finally able to process the final tally result as follows: jcli votes tally decrypt-results \\\n--vote-plan active_plans.json \\\n--vote-plan-id $\"vote_plan_id\" \\\n--shares merged_shares.json \\\n--threshold number_of_committee_members \\\n--output-format json > result.json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Voting » Private vote plan","id":"152","title":"Private vote plan"},"153":{"body":"Here we will describe how to: delegate your stake to a stake pool - so that you can participate to the consensus and maybe collect rewards for that. register a stake pool retire a stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Staking with Jörmungandr » Staking with Jörmungandr","id":"153","title":"Staking with Jörmungandr"},"154":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » Delegating your stake","id":"154","title":"Delegating your stake"},"155":{"body":"Stake is concentrated in accounts, and you will need account public key to delegate its associated stake.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to create the delegation certificate","id":"155","title":"how to create the delegation certificate"},"156":{"body":"You will need: the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new owner-stake-delegation STAKE_POOL_ID --output stake_delegation.cert Note that the certificate is in blaco, there’s no account key used for its creation. In order for delegation to work it must be submitted to a node inside a very specific transaction: Transaction must have exactly 1 input The input must be from account The input value must be strictly equal to fee of the transaction Transaction must have 0 outputs The account used for input will have its stake delegated to the stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for own account","id":"156","title":"for own account"},"157":{"body":"You will need: account public key: a bech32 string of a public key the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new stake-delegation ACCOUNT_PUBLIC_KEY STAKE_POOL_ID --output stake_delegation.cert","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for any account","id":"157","title":"for any account"},"158":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_delegation.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key account_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » submitting to a node","id":"158","title":"submitting to a node"},"159":{"body":"This procedure is needed only for certificates that are to be included in the genesis config file. We need to make sure that the owner of the account is authorizing this delegation to happens, and for that we need a cryptographic signature. We will need the account secret key to create a signature jcli certificate sign --certificate stake_delegation.cert --key account_key.prv --output stake_delegation.signedcert The content of stake_delegation.signedcert will be something like: signedcert1q9uxkxptz3zx7akmugkmt4ecjjd3nmzween2qfr5enhzkt37tdt4uqt0j0039z5048mu9ayv3ujep5sl28q2cpdnx9fkvpq30lmjrrgtmqqctzczvu6e3v65m40n40c3y2pnu4vhd888dygkrtnfm0ts92fe50jy0h0ugh6wlvgy4xvr3lz4uuqzg2xgu6vv8tr24jrwhg0l09klp5wvwzl5 and can now be added in the genesis config file. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to sign your delegation certificate","id":"159","title":"how to sign your delegation certificate"},"16":{"body":"Jörmungandr network capabilities are split into: the REST API, used for informational queries or control of the node; the gRPC API for blockchain protocol exchange and participation; Here we will only review the gRPC API as the REST API is described in another chapter: go to the REST documentation","breadcrumbs":"Core Ledger » General Concepts » Network overview » Network overview","id":"16","title":"Network overview"},"160":{"body":"There are multiple components to be aware of when running a stake pool: your NodeId: it is the identifier within the blockchain protocol (wallet will delegate to your stake pool via this NodeId); your [ VRF ] key pairs: this is the cryptographic material we will use to participate to the leader election; your KES key pairs: this is the cryptographic material we will use to sign the block with. the stake pool Tax : the value the stake pool will take from the total reward due to the stake pool before distributing rewards (if any left) to the delegators. So in order to start your stake pool you will need to generate these objects.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Registering a stake pool","id":"160","title":"Registering a stake pool"},"161":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The primitives","id":"161","title":"The primitives"},"162":{"body":"To generate your [ VRF ] Key pairs, we will utilise jcli as described here : jcli key generate --type=RistrettoGroup2HashDhH stake_pool_vrf.prv stake_pool_vrf.prv file now contains the VRF private key. jcli key to-public --input stake_pool_vrf.prv stake_pool_vrf.pub stake_pool_vrf.pub file now contains the VRF public key.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » VRF key pair","id":"162","title":"VRF key pair"},"163":{"body":"Similar to above: jcli key generate --type=SumEd25519_12 stake_pool_kes.prv stake_pool_kes.prv file now contains the KES private key jcli key to-public --input stake_pool_kes.prv stake_pool_kes.pub stake_pool_kes.pub file now contains the KES public key","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » KES key pair","id":"163","title":"KES key pair"},"164":{"body":"There are 3 values you can set to configure the stake pool’s Tax : tax-fixed: this is the fixed cut the stake pool will take from the total reward due to the stake pool; tax-ratio: this is the percentage of the remaining value that will be taken from the total due tax-limit: a value that can be set to limit the pool’s Tax . All of these values are optionals, if not set, they will be set to 0. This will mean no tax for the stake pool: rewards are all distributed to the delegators.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Choosing the Tax parameters","id":"164","title":"Choosing the Tax parameters"},"165":{"body":"Let say you control a stake pool SP, with 2 owners (O1 and O2). During epoch 1, SP has created some blocks and is entitled to receive 10_000. Before distributing the 10_000 among the delegators, SP will take its Tax . we extract the tax-fixed. If this is greater or equal to the total (10_000) then we stop there, there is no more rewards to distribute. with what remains the SP extracts its tax-ratio and checks the tax from the ratio is not greater than tax-limit. the total SP rewards will then be distributed equally to the owners (O1 and O2). Note that if the --reward-account is set, the rewards for SP are then distributed to that account and nothing to O1 and O2. For example: total fixed ratio limit SP O1 O2 for delegators takes 100% 10000 0 1/1 0 10000 5000 5000 0 fixed of 1000 10000 1000 0/1 0 1000 500 500 9000 fixed + 10% 2000 1000 1/10 0 1100 550 550 900 fixed + 20% up to 150 2000 1000 1/5 150 1150 575 575 850","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » So how does this works","id":"165","title":"So how does this works"},"166":{"body":"--tax-limit The maximum tax value the stake pool will take. This will set the maximum the stake pool value will reserve for themselves from the `--tax-ratio` (excluding `--tax-fixed`).\n--tax-ratio The percentage take of the stake pool. Once the `tax-fixed` has been take, this is the percentage the stake pool will take for themselves. [default: 0/1]\n--tax-fixed set the fixed value tax the stake pool will reserve from the reward For example, a stake pool may set this value to cover their fixed operation costs. [default: 0]","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The options to set","id":"166","title":"The options to set"},"167":{"body":"The certificate is what will be sent to the blockchain in order to register yourself to the other participants of the blockchain that you are a stake pool too. jcli certificate new stake-pool-registration \\ --kes-key $(cat stake_pool_kes.pub) \\ --vrf-key $(cat stake_pool_vrf.pub) \\ --start-validity 0 \\ --management-threshold 1 \\ --tax-fixed 1000000 \\ --tax-limit 1000000000 \\ --tax-ratio \"1/10\" \\ --owner $(cat owner_key.pub) > stake_pool.cert The --operator flag is optional. And now you can retrieve your stake pool id (NodeId): jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » creating a stake pool certificate","id":"167","title":"creating a stake pool certificate"},"168":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_pool.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » submitting to a node","id":"168","title":"submitting to a node"},"169":{"body":"Stake pool can be retired by sending transaction with retirement certificate. From technical stand point, it is very similar to register stake pool operation. Before start we need to be sure, that: you have sufficient amount of ada to pay fee for transaction with retirement certificate. you know your stake pool id.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retiring a stake pool","id":"169","title":"Retiring a stake pool"},"17":{"body":"The protocol is based on gRPC that combines commonly used protocols like HTTP/2 and RPC. More precisely, Jörmungandr utilises. This choice was made because gRPC is already widely supported around the world because of it’s uitilization of standard protocols HTTP/2 which makes it much easier for Proxies and Firewalls to recognise the protocol and permit the traffic.","breadcrumbs":"Core Ledger » General Concepts » Network overview » The protocol","id":"17","title":"The protocol"},"170":{"body":"To retrieve your stake pool id: jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retrieve stake pool id","id":"170","title":"Retrieve stake pool id"},"171":{"body":"The certificate is what will be sent to the blockchain in order to retire your stake pool. jcli certificate new stake-pool-retirement \\ --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 \\ --retirement-time 0 \\ retirement.cert where: retirement.cert - write the output of to the retirement.cert --retirement-time 0 - 0 means as soon as possible. Which is until the next following epoch. --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 - hex-encoded stake pool ID.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » creating a retirement certificate","id":"171","title":"creating a retirement certificate"},"172":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat retirement.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. Important ! Please be sure that you have sufficient amount of owners signatures in order to retire stake pool. At least half of owners singatures (which were provided when registering stake pool) are required to sign retirement certificate. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » submitting to a node","id":"172","title":"submitting to a node"},"173":{"body":"This section is meant for advanced users and developers of the node, or if you wish to learn more about the node. At the moment, it only covers details on how to create your own blockchain genesis configuration, but in normal case, the blockchain configuration should be available with the specific blockchain system.","breadcrumbs":"Core Ledger » Advanced » Advanced » Advanced","id":"173","title":"Advanced"},"174":{"body":"The genesis file is the file that allows you to create a new blockchain from block 0. It lays out the different parameters of your blockchain: the initial utxo, the start time, the slot duration time, etc… Example of a BFT genesis file with an initial address UTxO and an account UTxO. More info regarding starting a BFT blockchain here and regarding addresses there . You could also find information regarding the jcli genesis tooling . You can generate a documented pre-generated genesis file: jcli genesis init For example your genesis file may look like: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch block0_date: {default_block0_date} # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' instead. # # otherwise leave as this discrimination: {discrimination} # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis block0_consensus: bft # Number of slots in each epoch. # # default value is {default_slots_per_epoch} slots_per_epoch: {default_slots_per_epoch} # The slot duration, in seconds, is the time between the creation # of 2 blocks # # default value is {default_slot_duration} slot_duration: {default_slot_duration} # set the block content max size # # This is the size, in bytes, of all the contents of the block (excluding the # block header). # # default value is {default_block_content_max_size} block_content_max_size: {default_block_content_max_size} # A list of Ed25519 PublicKey that represents the # BFT leaders encoded as bech32. The order in the list matters. consensus_leader_ids: - {leader_1} - {leader_2} # Epoch stability depth # # Optional: default value {default_epoch_stability_depth} epoch_stability_depth: {default_epoch_stability_depth} # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1] # # default value: {default_consensus_genesis_praos_active_slot_coeff} consensus_genesis_praos_active_slot_coeff: {default_consensus_genesis_praos_active_slot_coeff} # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate] linear_fees: # this is the minimum value to pay for every transaction constant: 2 # the additional fee to pay for every inputs and outputs coefficient: 1 # the additional fee to pay if the transaction embeds a certificate certificate: 4 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: # certificate_owner_stake_delegation: 1 # Proposal expiration in epochs # # default value: {default_proposal_expiration} proposal_expiration: {default_proposal_expiration} # The speed to update the KES Key in seconds # # default value: {default_kes_update_speed} kes_update_speed: {default_kes_update_speed} # Set where to send the fees generated by transactions activity. # # by default it is send to the \"rewards\" pot of the epoch which is then # distributed to the different stake pools who created blocks that given # epoch. # # It is possible to send all the generated fees to the \"treasury\". # # Optional, default is \"rewards\" # fees_go_to: \"rewards\" # initial value the treasury will start with, if not set the treasury # starts at 0 treasury: 1000000000000 # set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document # # if not set, the treasury will not grow treasury_parameters: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # It is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: # max_limit: 10000 # Set the total reward supply available for monetary creation # # if not set there is no monetary creation # once emptied, there is no more monetary creation total_reward_supply: 100000000000000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate) # reward_parameters: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 100 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: \"13/19\" # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 1 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 3 # set some reward constraints and limits # # this value is optional, the default is no constraints at all. The settings # are commented below: # #reward_constraints: # # limit the epoch total reward drawing limit to a portion of the total # # active stake of the system. # # # # for example, if set to 10%, the reward drawn will be bounded by the # # 10% of the total active stake. # # # # this value is optional, the default is no reward drawing limit # reward_drawing_limit_max: \"10/100\" # # # settings to incentivize the numbers of stake pool to be registered # # on the blockchain. # # # # These settings does not prevent more stake pool to be added. For example # # if there is already 1000 stake pools, someone can still register a new # # stake pool and affect the rewards of everyone else too. # # # # if the threshold is reached, the pool doesn't really have incentive to # # create more blocks than 1 / set-value-of-pools % of stake. # # # # this value is optional, the default is no pool participation capping # pool_participation_capping: # min: 300 # max: 1000 # list of the committee members, they will be used to guarantee the initial # valid operation of the vote as well as privacy. committees: - \"7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19\" - \"f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db\" # Initial state of the ledger. Each item is applied in order of this list\ninitial: # Initial deposits present in the blockchain - fund: # UTxO addresses or account - address: {initial_funds_address_1} value: 10000 - address: {initial_funds_address_2} value: 10000 # Initial token distribution - token: token_id: 00000000000000000000000000000000000000000000000000000000.7e5d6abc to: - address: {initial_funds_address_1} value: 150 - address: {initial_funds_address_2} value: 255 - token: token_id: 00000000000000000000000000000000000000000000000000000000.6c1e8abc to: - address: {initial_funds_address_1} value: 22 - address: {initial_funds_address_2} value: 66 # Initial certificates #- cert: .. # Initial deposits present in the blockchain #- legacy_fund: # # Legacy Cardano address # - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 # value: 123 There are multiple parts in the genesis file: blockchain_configuration: this is a list of configuration parameters of the blockchain, some of which can be changed later via the update protocol; initial: list of steps to create initial state of ledger","breadcrumbs":"Core Ledger » Advanced » genesis file » genesis file","id":"174","title":"genesis file"},"175":{"body":"option format description block0_date number the official start time of the blockchain, in seconds since UNIX EPOCH discrimination string production or test block0_consensus string bft slot_duration number the number of seconds between the creation of 2 blocks epoch_stability_depth number allowed size of a fork (in number of block) consensus_leader_ids array the list of the BFT leader at the beginning of the blockchain block_content_max_size number the maximum size of the block content (excluding the block header), in bytes. linear_fees object linear fee settings, set the fee for transaction and certificate publishing consensus_genesis_praos_active_slot_coeff number genesis praos active slot coefficient. Determines minimum stake required to try becoming slot leader, must be in range (0,1] kes_update_speed number the speed to update the KES Key in seconds slots_per_epoch number number of slots in each epoch for more information about the BFT leaders in the genesis file, see Starting a BFT Blockchain","breadcrumbs":"Core Ledger » Advanced » genesis file » blockchain_configuration options","id":"175","title":"blockchain_configuration options"},"176":{"body":"Each entry can be one of 3 variants: variant format description fund sequence initial deposits present in the blockchain (up to 255 outputs per entry) cert string initial certificate legacy_fund sequence same as fund, but with legacy Cardano address format Example: initial: - fund: - address:
value: 10000 - address: value: 20000 - address: value: 30000 - cert: - legacy_fund: - address: value: 123 - fund: - address: value: 1001","breadcrumbs":"Core Ledger » Advanced » genesis file » initial options","id":"176","title":"initial options"},"177":{"body":"variant format description address string can be a single address or an account address value number assigned value legacy_fund differs only in address format, which is legacy Cardano Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » genesis file » fund and legacy_fund format","id":"177","title":"fund and legacy_fund format"},"178":{"body":"BFT stands for the Byzantine Fault Tolerant ( read the paper ). Jormungandr allows you to start a BFT blockchain fairly easily. The main downside is that it is centralized, only a handful of nodes will ever have the right to create blocks.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » starting a bft node","id":"178","title":"starting a bft node"},"179":{"body":"It is fairly simple. A given number of Nodes (N) will generate a key pairs of type Ed25519 (see JCLI’s Keys ). They all share the public key and add them in the genesis.yaml file. It is the source of truth, the file that will generate the first block of the blockchain: the Block 0 . Then, only by one after the other, each Node will be allowed to create a block. Utilising a Round Robin algorithm.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » How does it work","id":"179","title":"How does it work"},"18":{"body":"The protocol allows you to send multiple types of messages between nodes: sync block to remote peer’s Last Block (tip). propose new fragments (new transactions, certificates, …): this is for the fragment propagation. propose new blocks: for block propagation. There are other commands that optimise the communication and synchronization between nodes that will be documented here in the future. Another type of messages is the Gossip message. These gossip messages allow Nodes to exchange information (gossips) about other nodes on the network, allowing for peer discovery.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Type of queries","id":"18","title":"Type of queries"},"180":{"body":"blockchain_configuration: block0_date: 1550822014 discrimination: test block0_consensus: bft slots_per_epoch: 5 slot_duration: 15 epoch_stability_depth: 10 consensus_leader_ids: - ed25519e_pk1k3wjgdcdcn23k6dwr0cyh88ad7a4ayenyxaherfazwy363pyy8wqppn7j3 - ed25519e_pk13talprd9grgaqzs42mkm0x2xek5wf9mdf0eefdy8a6dk5grka2gstrp3en consensus_genesis_praos_active_slot_coeff: 0.22 linear_fees: constant: 2 coefficient: 1 certificate: 4 kes_update_speed: 43200\ninitial: - fund: - address: ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0 value: 10000 - cert: cert1qgqqqqqqqqqqqqqqqqqqq0p5avfqqmgurpe7s9k7933q0wj420jl5xqvx8lywcu5jcr7fwqa9qmdn93q4nm7c4fsay3mzeqgq3c0slnut9kns08yn2qn80famup7nvgtfuyszqzqrd4lxlt5ylplfu76p8f6ks0ggprzatp2c8rn6ev3hn9dgr38tzful4h0udlwa0536vyrrug7af9ujmrr869afs0yw9gj5x7z24l8sps3zzcmv - legacy_fund: - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 value: 123 In order to start your blockchain in BFT mode you need to be sure that: consensus_leader_ids is non empty; more information regarding the genesis file here .","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Example of genesis file","id":"180","title":"Example of genesis file"},"181":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin This command will create (or replace) the Block 0 of the blockchain from the given genesis configuration file (genesis.yaml).","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Creating the block 0","id":"181","title":"Creating the block 0"},"182":{"body":"Now that the blockchain is initialized, you need to start your node. Write your private key in a file on your HD: $ cat node_secret.yaml\nbft: signing_key: ed25519_sk1hpvne... Configure your Node (config.yml) and run the following command: $ jormungandr --genesis-block block-0.bin \\ --config example.config \\ --secret node_secret.yaml It’s possible to use the flag --secret multiple times to run a node with multiple leaders.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Starting the node","id":"182","title":"Starting the node"},"183":{"body":"Generate initial config jcli genesis init > genesis.yaml Generate secret key, e.g. jcli key generate --type=Ed25519 > key.prv Put secret key in a file, e.g. node_secret.yaml as follows: bft:\nsigning_key: ed25519_sk1kppercsk06k03yk4qgea.... Generate public key out of previously generated key cat key.prv | jcli key to-public Put generated public key as in genesis.yaml under consensus_leader_ids: Generate block = jcli genesis encode --input genesis.yaml --output block-0.bin Create config file and store it on your HD as node.config e.g. -> ---\nlog: level: trace format: json\nrest: listen: \"127.0.0.1:8607\"\np2p: public_address: /ip4/127.0.0.1/tcp/8606 topics_of_interest: messages: low blocks: normal Start Jörmungandr node : jormungandr --genesis-block block-0.bin --config node.config --secret node_secret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Step by step to start the BFT node","id":"183","title":"Step by step to start the BFT node"},"184":{"body":"Additionally, there is a script here that can be used to bootstrap a test node with bft consensus protocol. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Script","id":"184","title":"Script"},"185":{"body":"When starting a genesis praos blockchain there is an element to take into consideration while constructing the block 0: the stake distribution . In the context of Genesis/Praos the network is fully decentralized and it is necessary to think ahead about initial stake pools and to make sure there is stake delegated to these stake pools. In your genesis yaml file, make sure to set the following values to the appropriate values/desired values: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: block0_consensus: genesis_praos consensus_genesis_praos_active_slot_coeff: 0.1 kes_update_speed: 43200 # 12hours block0_consensus set to genesis_praos means you want to start a blockchain with genesis praos as the consensus layer. consensus_genesis_praos_active_slot_coeff determines minimum stake required to try becoming slot leader, must be in range 0 exclusive and 1 inclusive.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » starting a genesis blockchain","id":"185","title":"starting a genesis blockchain"},"186":{"body":"In the initial_certs field you will set the initial certificate. It is important to declare the stake pool and delegate stake to them. Otherwise no block will ever be created. Remember that in this array the order matters: In order to delegate your stake, you need a stake pool to already exist, so the stake pool registration certificate should go first.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » The initial certificates","id":"186","title":"The initial certificates"},"187":{"body":"Now you can register a stake pool. Follow the instructions in registering stake pool guide . The owner key (the key you sign the stake pool registration certificate) is the secret key associated to a previously registered stake key.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Stake pool registration","id":"187","title":"Stake pool registration"},"188":{"body":"Now that there is both your stake key and there are stake pools available in the block0 you need to delegate to one of the stake pool. Follow the instruction in delegating stake . And in the initial funds start adding the addresses. To create an address with delegation follow the instruction in JCLI’s address guide . Utilise the stake key registered previously as group address: jcli address single $(cat wallet_key.pub) $(cat stake_key.pub)\nta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm You will notice that addresses with delegation are longer (about twice longer) than addresses without delegation. For example, the most minimal setting you may have is: initial_certs: # register a stake pool (P), owner of the stake pool is the stake key (K) - cert1qsqqqqqqqqqqqqqqqqqqq0p5avfqp9tzusr26chayeddkkmdlap6tl23ceca8unsghc22tap8clhrzslkehdycufa4ywvqvs4u36zctw4ydtg7xagprfgz0vuujh3lgtxgfszqzqj4xk4sxxyg392p5nqz8s7ev5wna7eqz7ycsuas05mrupmdsfk0fqqudanew6c0nckf5tsp0lgnk8e8j0dpnxvjk2usn52vs8umr3qrccegxaz # delegate stake associated to stake key (K) to stake pool (P) - cert1q0rv4ccl54k99rtnm39xvhwvqcwjcm385n2dwvamahpu5tmdz3plt65rpewev3a03xj7nfx5pz0xap2cjxjnxvt2ma9y9dalzder3xm5qyqyq0lx05ggrws0ghuffqrg7scqzdsd665v4m7087eam5zvw4f26v2tsea3ujrxly243sgqkn42uttk5juvq78ajvfx9ttcmj05lfuwtq9qhdxzr0 initial_funds: # address without delegation - address: ta1swx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjsczt057x value: 10000 # address delegating to stake key (K) - address: ta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm value: 1000000","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Delegating stake","id":"188","title":"Delegating stake"},"189":{"body":"Now, to start the node and be able to generate new blocks, you have to put your pool’s private keys and id in a file. Then start the node with the --secret filename parameter. For example, if you follow the examples of the registering stake pool guide You could create a file called poolsecret.yaml with the following content. genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file And you could start the node with this command jormungandr --genesis-block block-0.bin --config config.yaml --secret poolsecret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Starting the node","id":"189","title":"Starting the node"},"19":{"body":"The peer 2 peer connections are established utilising multiple components: A multilayered topology (e.g. Poldercast ); Gossiping for node discoverability; Subscription mechanism for event propagation; Security and countermeasures: (such as Topology Policy for scoring and/or blacklisting nodes);","breadcrumbs":"Core Ledger » General Concepts » Network overview » Peer to peer","id":"19","title":"Peer to peer"},"190":{"body":"There is a script here that can be used to bootstrap a test node with a pre-set faucet and stake pool and can be used as an example. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Test script","id":"190","title":"Test script"},"191":{"body":"Please just brain dump everything you know about the above topics, or anything related to them, either individually or interrelated. This process is not intended to consume an excessive amount of your time, so focus more on getting the information you have to contribute down in the quickest way possible. Don’t be overly concerned with format or correctness, its not a test. If you think things work in a particular way, describe it. Obviously, different people will know different things, don’t second guess info and not include it because you think someone else might say it. If you have technical details, like the format of a data entity that can be explained, please include it. This is intended to become a deep dive, to the byte level. If you want to, feel free to x-ref the code as well. Add what you know (if anything) in the section below your name and submit a PR to the DOCS branch (not main) with Steven Johnson for review. I will both review and merge these. I will also start collating the data once this process is complete, and we can then iterate until the picture is fully formed and accurate. Feel free to include other .md files if there is a big piece of information, such as the format of a vote transaction, or the vote plan section of block 0, etc. Or refer to other documentation we may already have (in any form, eg confluence, jira issue or Miro, or the old repos or Anywhere else is ok.). For Jormungandr, we are particularly interested in: How the vote plan is set up, what the various fields of the vote plan are and how they are specified. 2. How individual votes relate to vote-plans. 3. How votes are prevented from being cast twice by the same voter. 4. The format of the entire vote transaction, both public and private. 5. How is the tally conducted? (is it done in Jormungandr, or with the jcli tool for example)? 6. Anything else which is not listed but is necessary to fully understand the votes cast in Jormungandr. Don’t feel limited by this list, if there is anything else the list doesn’t cover but you want to describe it, please do.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate","id":"191","title":"How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate"},"192":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Sasha Prokhorenko","id":"192","title":"Sasha Prokhorenko"},"193":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Nicolo Padovani","id":"193","title":"Nicolo Padovani"},"194":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Felipe Rosa","id":"194","title":"Felipe Rosa"},"195":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Joaquin Rosales","id":"195","title":"Joaquin Rosales"},"196":{"body":"This field is not very well documented, except for a line in book/src/core-vitss-doc/api/v0.yaml that describes it as: > Identifier of the proposal on the blockchain. Internally, the identifier is of type ExternalProposalId (src/chain-libs/chain-impl-mockchain/src/certificate/vote_plan.rs). This is an alias type for DigestOf, from the chain_crypto crate. This is undocumented. The ExternalProposalId is sent through the wire and csv files as a 64-character hex-encoded string. The catalyst-toolbox binary decodes this hex string, and converts it into a valid ExternalProposalId. So that the underlying [u8; 32] can be extracted, hashed and used in logic related to rewards thresholds, votes, and dreps. There is an arbitrary snapshot generator used in vit-servicing-station-tests. It creates valid ExternalProposalId from a randomized [u8; 32] array that is used in integration tests found in vit-testing.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Proposal.chain_proposal_id","id":"196","title":"Proposal.chain_proposal_id"},"197":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefano Cunego","id":"197","title":"Stefano Cunego"},"198":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Conor Gannon","id":"198","title":"Conor Gannon"},"199":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Alex Pozhylenkov","id":"199","title":"Alex Pozhylenkov"},"2":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Introduction » What is Catalyst-Core","id":"2","title":"What is Catalyst-Core"},"20":{"body":"As described in the Poldercast paper, our network topology is built on multiple layers that allow for granular control of it’s behavior. In practice this means a node will have different groups of nodes that it connects to based on different algorithms, each of these groups are a subset of the whole known list of nodes. In short we have: The rings layer selects a predecessor(s) and a successor(s) for each topic (Fragment or Blocks); The Vicinity layer will select nodes that have similar interests; The Cyclon layer, will select nodes randomly. However, we keep the option open to remove some of these layers or to add new ones, such as: A layer to allow privilege connections between stake pools; A layer for the user’s whitelist, a list of nodes the users considered trustworthy and that we could use to check in the current state of the network and verify the user’s node is not within a long running fork;","breadcrumbs":"Core Ledger » General Concepts » Network overview » Multilayered topology","id":"20","title":"Multilayered topology"},"200":{"body":"Spending counter associated to an account. Every time the owner is spending from an account, the counter is incremented. This features is similar to the Ethereum nonce field in the block and prevents from the replay attack. pub struct SpendingCounter(pub(crate) u32); As it was said before every account associated with the a current state of the Spending Counter. Or to be more precised to an array of 8 Spending counters. pub struct SpendingCounterIncreasing { nexts: Vec,\n} Each spending counter differers with each other. The specified lane bits are a first 3 bits of the original Spending counter value. Spending counter structure: (001)[lane] (00000 00000000 00000000 00000001){counter}\n(00100000 00000000 00000000 00000001){whole Spending Counter} With such approach user can: generate up to 8 transactions with the specified different lanes and corresponding counters submit it into the blockchain with no matter on the transaction processing order. So incrementing of the counter will be done in “parallel” for each lane. That is the only difference with the original Ethereum approach with nonce (counter in our implementation). Where for each transaction you should specify an exact value and submits transaction in the exact order.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Spending Counters","id":"200","title":"Spending Counters"},"201":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Cameron Mcloughlin","id":"201","title":"Cameron Mcloughlin"},"202":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Dariusz Kijania","id":"202","title":"Dariusz Kijania"},"203":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Ognjen Dokmanovic","id":"203","title":"Ognjen Dokmanovic"},"204":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefan Rasevic","id":"204","title":"Stefan Rasevic"},"205":{"body":"This directory contains Jormungandr’s specifications. file content network the node to node communication and the peer to peer topology","breadcrumbs":"Core Ledger » Jormungandr Specifications » Jormungandr Specifications » Jormungandr Specifications","id":"205","title":"Jormungandr Specifications"},"206":{"body":"This is the migration plan for current cardano blockchain (henceforth refered as legacy) to jormungandr style state and formats.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » MIGRATION","id":"206","title":"MIGRATION"},"207":{"body":"Block Zero: first/genesis block of the blockchain.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Vocabulary","id":"207","title":"Vocabulary"},"208":{"body":"It’s paramount for all users from the legacy chain to find their precious data after the migration. Also as one secondary consideration, the users need not to be aware, as much as possible of the transition, apart from requiring new or updated software capable of handling the new formats and processes. Lastly, it would be useful to provide some kind of cryptographic continuinity of the chains, increasing assurances during transition. The first thing that need consideration is the legacy utxos. We need the ability to take the latest known state of coin distribution and transfer this as is to the new state order. The settings of the legacy chain, are automatically superseded by the new settings mandatory in block zero, so there’s no need to keep any related data. The heavy/light delegation certificates are also superseded by either the BFT leaders or the Genesis-Praos stake pools defined explicitely in block zero. From a user experience and offering continuinity of history, it would be preferable to start the chain initial date at the end of the legacy one. This way the user can still refer to historical transaction in the legacy era of the chain without seeing similar block date on two different era. Finally it’s important to provide as much guarantee as possible of the transition, and hence knowing the hash of last block of the legacy chain on “the other side”, would allow some validation mechanism. Block 0 content being a trusted data assumption, having the previous hash embedded directly inside, reconstruct the inherent chain of trust of a blockchain cheaply.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Description","id":"208","title":"Description"},"209":{"body":"To support this, the following continuinity mechanisms are thus available: blockchain continuity: the ability to embed inside block zero of the chain an arbitrary hash of data, representing the last block of the legacy chain. user experience: block zero choice of start of epoch (e.g. starting the new chain at epoch 129). legacy funds: A sequence of legacy address and their associated values Note: On the blockchain continuity, we decided to store the hash as an opaque blob of data in the content, instead of using the normal blockchain construction of the previous hash. Using the previous hash, would have made the start condition of the blockchain harder to detect compared to the sentinel 0 value currently in place and would have forced to have an identical hash size by construction. The legacy funds are automatically assigned a new transaction-id / index in the new system, compared to whichever computed transaction-id / index in the legacy chain. This new transaction-id is computed similarly from normal transaction in the new system, and no special case has been added to support this. However the legacy address is stable across this transition, allowing user to find their funds on whichever address it was left, at the value it was left.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mechanisms","id":"209","title":"Mechanisms"},"21":{"body":"Gossiping is the process used for peer discovery. It allows two things: For any nodes to advertise themselves as discoverable; To discover new nodes via exchanging a list of nodes (gossips); The gossips are selected by the different layers of the multilayered topology. For the Poldercast modules, the gossips are selected just as in the paper. Additional modules may select new nodes in the gossip list or may decide to not add any new information.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Gossiping","id":"21","title":"Gossiping"},"210":{"body":"To clearly break from the past, the old funds are only allowed to be consumed, leading to the old state monotonically decreasing. This also prevent from having the old legacy address construction available in witness or outputs. The transaction-id/index system is the same as normal funds, so the inputs doesn’t requires any modification, however we need to distinguish the witness since the witness on the old chain is different. This provide a clear mechanism to distinguish the type of input (fund or old-fund). The witness construction is similar to what is found on the old chain, an extended public key followed by a signature.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Transaction","id":"210","title":"Transaction"},"211":{"body":"Considering the risk involve in such a migration, we can repeatly tests mock migration at arbitrary points (preferably at end of epoch). The migration itself will be fully automated and repeadtly tested for solidity and accuracy, and can be done with mostly off the shelf code that we already have. The migration will capture the latest known state and create the equivalent genesis.yaml file mingled with the settings for the new blockchain, and subsequently compiled into a working block0. The task itself should be completeable in sub-second, leading to a very small window of transition. Although to note, the block0 size is proportional to the number of state point that is being kept; Approximately for ~200000 utxos, 13mb of block zero will be created. rust-cardano’s chain-state is already capable to capture the latest known state, but there’s no currently any genesis generational tool for this task, although the task remain fairly simple.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mainnet-Testnet tests","id":"211","title":"Mainnet-Testnet tests"},"212":{"body":"The net benefits is the total removal of all legacy constructs; The new users or software have no need to handle any of the legacy data. This also provide an implicit net chain “compression”: what happened in Byron, stays in Byron. The legacy addresses are particularly problematic for many reasons not described here, but not providing full usage is particularly advantageous, nonetheless since it provide a way to not have their numbers go up ever after transition.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Advantages","id":"212","title":"Advantages"},"213":{"body":"From historical purpose and bip44 wallets, we need to provide the legacy blocks. The legacy blocks can be made available from a 3rd party service for a one-of 2.0 Gb download (approximate: all the mainnet data), for example using a service like cardano-http-bridge which have caching and CDN capability, leading to a very small cost for the provider of such a service. It’s also possible to provide the historical data as part of the node, supplementing the current interface with an interface to download old data ala cardano-http-bridge. The first option is strongly favored to cleanly break the legacy data from the new data. Legacy randomized wallets (e.g. Ddz addresses) will not need to download the full history, since the legacy address contains the metadata sufficient for recovery, so only block zero is necessary to know their own fund. On the other hand, legacy BIP44 wallets will need to download the full history to be able to recover their BIP44 state at the transition. For wallet history of legacy wallets, the historical data will have to be downloaded too. For new wallet, after the transition, this historical data will not be needed whatsoever, saving 2.0gb of download for new users. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Historical data","id":"213","title":"Historical data"},"214":{"body":"Bringing Ouroboros to the people","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Network","id":"214","title":"Network"},"215":{"body":"This document highlights the requirements we wish to apply to a decentralised network applied to cardano blockchain. Then we will discuss the possible solutions we can provide in a timely manner and the tradeoff we will need to make.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Introduction","id":"215","title":"Introduction"},"216":{"body":"This is a main of general guidelines for the design decision in this document, and to judge the merit of solutions: Efficiency : the communication between the nodes needs to be succinct. to the point, avoiding unnecessary redundancies. The protocol needs to stabilise quickly to a well distributed network, guaranteeing a fast propagation of the important events; Security : limit the ability for other nodes to trigger behavior that would prevent a peer from working (e.g. unbounded resources usage) Simplicity : we need to easily implement the protocol for any platforms or environment that will matter for our users.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design decisions guidelines","id":"216","title":"Design decisions guidelines"},"217":{"body":"This section describes the communication between 2 different peers on the network. It involves synchronous queries with the context of the local state and remote state.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Node communication","id":"217","title":"Node-to-Node communication"},"218":{"body":"This is a general high level list of what information will need to be exchanged: Bootstrap local state from nothing Update local state from an arbitrary point Answer Synchronous queries: RPC style Asynchronous messages for state propagation (transactions, blocks, ..) P2P messages (See P2P Communication)","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » General Functionality","id":"218","title":"General Functionality"},"219":{"body":"User Stories Alice wants to synchronise its local state from Bob from Alice’s Tip: Alice downloads Block Headers from Bob (starting from Alice’s Tip); Bob does not know this Tip: Error: unknown block Alice starts again with a previous Tip; Bob does know this state: Bob streams back the block headers Alice downloads block Since Alice knows the list of Block Headers and the number of blocks to download, Alice can download from multiple peers, requiring to get block stream from different Hash in this list of Block; State: tip_hash, storage Pseudocode (executed by Alice): sync(): bob.get_headers(alice.tip) Alice wants to propagate a transaction to Bob Alice send the transaction hash to Bob Bob replies whether it want to hear more Alice send the transaction to Bob if Bob agrees Alice wants to submit a Block to Bob Alice sends the Header to Bob; Bob replies whether it want to hear more Alice sends the Block to Bob if Bob agrees Alice want to exchange peers with Bob High Level Messages We model everything so that we don’t need any network state machine. Everything is stateless for Handshake: () -> (Version, Hash) This should be the first request performed by the client after connecting. The server responds with the protocol version and the hash of the genesis block. The handshake is used to establish that the remote node has a compatible protocol implementation and serves the right block chain. Tip: () -> Header: Return the header of the latest block known by the peer (also known as at the tip of the blockchain). DD? : Block vs hash: block is large but contain extra useful metadata (slotid, prevhash), whereas hash is small. GetHeaders: ([Hash]) -> [Header]: Fetch the headers (cryptographically verifiable metadata summaries) of the blocks identified by hashes. GetBlocks: ([Hash]) -> [Block]: Like GetHeaders, but returns full blocks. PullBlocksToTip: ([Hash]) -> Stream: Retrieve a stream of blocks descending from one of the given hashes, up to the remote’s current tip. This is an easy way to pull blockchain state from a single peer, for clients that don’t have a need to fiddle with batched GetBlocks requests and traffic distribution among multiple peers. BlockSubscription: (Stream
) -> Stream Establish a bidirectional subscription to send and receive announcements of new blocks and (in the client role) receive solicitations to upload blocks or push the chain of headers. The stream item is a tagged enumeration: BlockEvent: Announce(Header)|Solicit([Hash])|Missing([Hash], Hash) Announce propagates header information of a newly minted block. Solicit requests the client to upload blocks identified by the given hashes using the UploadBlocks request. Missing requests the client to stream the chain of block headers using the given range parameters. The meaning of the parameters is the same as in the PullHeaders request. The client does not need to stream solicitations upwards, as it can request blocks directly with GetBlocks or PullHeaders. The announcements send in either direction are used for both announcing new blocks when minted by this node in the leadership role, and propagating blocks received from other nodes on the p2p network. PullHeaders: ([Hash], Hash) -> Stream
Retrieve a stream of headers for blocks descending from one of the hashes given in the first parameter, up to the hash given in the second parameter. The starting point that is latest in the chain is selected. The client sends this request after receiving an announcement of a new block via the BlockSubscription stream, when the parent of the new block is not present in its local storage. The proposed starting points are selected from locally known blocks with exponentially receding depth. PushHeaders: (Stream
) Streams the chain of headers in response to a Missing event received via the BlockSubscription stream. UploadBlocks: (Stream) Uploads blocks in response to a Solicit event received via the BlockSubscription stream. ContentSubscription: (Stream) -> Stream Establish a bidirectional subscription to send and receive new content for the block under construction. Used for submission of new fragments submitted to the node by application clients, and for relaying of fragment gossip on the network. P2P Messages: see P2P messages section. The protobuf files describing these methods are available in the proto directory of chain-network crate in the chain-libs project repository. Pseudocode chain sync algorithm struct State { ChainState chain_state, HashMap blocks\n} struct ChainState { Hash tip, HashSet ancestors, Utxos ..., ...\n} impl ChainState { Fn is_ancestor(hash) -> bool { self.ancestors.exists(hash) }\n} // Fetch ‘dest_tip’ from `server’ and make it our tip, if it’s better.\nsync(state, server, dest_tip, dest_tip_length) { if is_ancestor(dest_tip, state.chain_state.tip) { return; // nothing to do } // find a common ancestor of `dest_tip` and our tip. // FIXME: do binary search to find exact most recent ancestor n = 0; loop { hashes = server.get_chain_hashes(dest_tip, 2^n, 1); if hashes == [] { ancestor = genesis; break; } ancestor = hashes[0]; if state.chain_state.has_ancestor(ancestor): { break } n++; } // fetch blocks from ancestor to dest_tip, in batches of 1000 // blocks, forwards // FIXME: integer arithmetic is probably off a bit here, but you get the idea. nr_blocks_to_fetch = 2^n; batch_size = 1000; batches = nr_blocks_to_fetch / batch_size; new_chain_state = reconstruct_chain_state_at(ancestor); for (i = batches; i > 0; i--) { // validate the headers ahead of downloading blocks to validate // cryptographically invalid blocks. It is interesting to do that // ahead of time because of the small size of a BlockHeader new_hashes = server.get_chain_hashes(dest_tip, (i - 1) * batch_size, batch_size); new_headers = server.get_headers(new_hashes); if new_headers are invalid { stop; } new_blocks = server.get_blocks(new_hashes).reverse(); for block in new_blocks { new_chain_state.validate_block(block)?; write_block_to_storage(block); } } if new_chain_state.chain_quality() > state.chain_state.chain_quality() { state.chain_state = new_chain_state }\n} Choice of wire Technology We don’t rely on any specific wire protocol, and only require that the wire protocol allow the transfer of the high level messages in a bidirectional way. We chose to use GRPC/Protobuf as initial technology choice: Efficiency : Using Protobuf, HTTP2 , binary protocol Bidirectional : through HTTP2, allowing stream of data. data push on a single established connection. Potential Authentication : Security / Stream atomicity towards malicious MITM Simplicity : Many languages supported ( code generation , wide support ) Language/Architecture Independent : works on everything Protobuf file acts as documentation and are relatively easy to version Connections and bidirectional subscription channels can be left open (especially for clients behind NAT), although we can cycle connections with a simple RCU-like system.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design","id":"219","title":"Design"},"22":{"body":"Based on the multilayered topology, the node will open multiplexed and bi-directional connections (thanks to industry standard gRPC , this comes for free). These bi-directional connections are used to propagate events such as: Gossiping events, when 2 nodes exchange gossips for peer discovery; Fragment events, when a node wants to propagate a new fragment to other nodes; Block events, when a node wants to propagate a new block creation event","breadcrumbs":"Core Ledger » General Concepts » Network overview » Subscription mechanism","id":"22","title":"Subscription mechanism"},"220":{"body":"Client are different from the node, in the sense that they may not be reachable by other peers directly. However we might consider non reachable clients to keep an open connections to a node to received events. TBD ReceiveNext : () -> Event Another solution would be use use libp2p which also implements NAT Traversals and already has solutions for this.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Client communication","id":"220","title":"Node-to-Client communication"},"221":{"body":"This section describes the construction of the network topology between nodes participating in the protocol. It will describes the requirements necessary to propagate the most efficiently the Communication Messages to the nodes of the topology.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Peer-to-Peer network","id":"221","title":"Peer-to-Peer network"},"222":{"body":"Communication Messages : the message that are necessary to be sent through the network (node-to-node and node-to-client) as defined above; Topology : defines how the peers are linked to each other; Node or Peer : an instance running the protocol; Link : a connection between 2 peers in the topology;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Definitions","id":"222","title":"Definitions"},"223":{"body":"A node can join the network at any moment; A node can leave the network at any moment; Node will discover new nodes to connect to via gossiping: nodes will exchange information regarding other nodes; Nodes will relay information to their linked nodes (neighbors); A node can challenge another node utilising the VRF in order to authentify the remote node is a specific stake owner/gatherer.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Functionalities","id":"223","title":"Functionalities"},"224":{"body":"RingGossip : NodeProfileDetails * RING_GOSSIP_MAX_SIZE; VicinityGossip : NodeProfileDetails * VICINITY_GOSSIP_MAX_SIZE; CyclonGossip : NodeProfileDetails * CYCLON_GOSSIP_MAX_SIZE; A node profile contains: Node’s id; Node’s IP Address; Node’s topics (set of what the node is known to be interested into); Node’s connected IDs","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Messages","id":"224","title":"Messages"},"225":{"body":"The requirements to join and leave the network at any moment, to discover and change the links and to relay messages are all handled by PolderCast . Implementing PolderCast provides a good support to handle churn, fast relaying and quick stabilisation of the network. The paper proposes 3 modules: Rings, Vicinity and Cyclon . Our addition: The preferred nodes We propose to extend the number of modules with a 4th one. This module is static and entirely defined in the config file. This 4th module will provide the following features: Connect to specific dedicated nodes that we know we can trust (we may use a VRF challenge to validate they are known stakeholder – they participated to numerous block creations); This will add a static, known inter-node communications. Allowing users to build a one to one trusted topology; A direct application for this will be to build an inter-stake-pool communication layer; Static / configured list of trusted parties (automatically whitelisted for quarantine) Metrics measurement related to stability TBD Reports and Quarantine In order to facilitate the handling of unreachable nodes or of misbehaving ones we have a system of reports that handles the state of known peers. Following such reports, at the moment based only on connectivity status, peers may move into quarantine or other less restrictive impairements. In the current system, a peer can be in any of these 4 states: Available: the peer is known to the current node and can be picked up by poldercast layers for gossip and propagation of messages. This is the state in which new peers joining the topology via gossip end up. Trusted: the last handshake between the peer and this node was successfull. For these kind of nodes we are a little more forgiving with reports and failures. Quarantined: the peer has (possibly several) failed handshake attempts. We will not attempt to contact it again for some time even if we receive new gossip. Unknown: the peer is not known to the current node. Actually, due to limitations of the poldercast library, this may mean that there are some traces of the peer in the profiles maintained by the current node but it cannot be picked up by poldercast layers for gossip or propagation. For all purposes but last resort connection attempts (see next paragraph), these two cases are essentially the same. Since a diagram is often easier to understand than a bunch of sentences, these are the transitions between states in the current implementation, with details about avoiding network partition removed (see next paragraph). Quarantine Avoid network partitions An important property of the p2p network is resilience to outages. We must avoid creating partitions in the network as much as possible. For this reason, we send a manual (i.e. not part of poldercast protocol) optimistic gossip message to all nodes that were reported after the report expired. If this message fails to be delivered, no further action will be taken against that peer to avoid cycling it back and forth from quarantine indefinitely. If instead the message is delivered correctly, we successfully prevented a possible partition :). Another measure in place is a sort of a last resort attempt: if the node did not receive any incoming gossip for the last X minutes (tweakable in the config file), we try to contact again any node that is not quarantined and for which we have any trace left in the system (this is where nodes that were artificially forgotten by the system come into play). Part to look into Privacy. Possibly Dandelion tech","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Communications Design","id":"225","title":"Communications Design"},"226":{"body":"","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial models considered","id":"226","title":"Adversarial models considered"},"227":{"body":"We consider an adversary whose goal is to isolate from the network nodes with stake. The impact of such successful attack would prevent block creation. Such adversarial node would propose a block that may look like a fork of the blockchain. Ouroboros Genesis allows fork up to an undetermined number of blocks in the past. The targeted would then have to do a large amount of block synchronisation and validation. If the fork pretend to be in an epoch known to us, we can perform some cryptographic verifications (check the VRF); If the fork pretends to be in an epoch long past, we may perform a small, controlled verification of up to N blocks from the forking point to verify the validity of these blocks; Once the validity verified, we can then verify the locality aliveness of the fork and apply the consensus algorithm to decide if such a fork is worth considering. However, suck attack can be repeated ad nauseam by any adversarial that happened to have been elected once by the protocol to create blocks. Once elected by its stake, the node may turn adversarial, creates as many invalid blocks, and propose them to the attacked node indefinitely. How do we keep track of the rejected blocks ? How do we keep track of the blacklisted stakeholder key or pool that are known to have propose too many invalid block or attempted this attack ? Rejected block have a given block hash that is unlikely to collide with valid blocks, a node can keep a bloomfilter of hashes of known rejected block hash; or of known rejected VRF key; The limitation of maintaining a bloom filter is that we may need to keep an ever growing bloom filter. However, it is reasonable to assume that the consensus protocol will organise itself in a collection of stakepools that have the resources (and the incentive) to keep suck bloom filter.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial forks","id":"227","title":"Adversarial forks"},"228":{"body":"We consider an adversary whose goal is to disrupt or interrupt the p2p message propagation. The event propagation mechanism of the pub/sub part of the p2p network can be leverage to continuously send invalid or non desired transactions to the network. For example, in a blockchain network protocol the transactions are aimed to be sent quickly between nodes of the topology so they may be quickly added to the ledger. While it is true that one can create a random amount of valid transactions, it is also possible perform a certain amount of validation and policies to prevent the transaction message forwarding from flooding the network: The protocol already requires the nodes to validate the signatures and that the inputs are unspent; We can add a policy not to accept transaction that may imply a double spend, i.e. in our pool of pending transaction, we can check that there is no duplicate inputs. The p2p gossiping protocols is an active action where a node decides to contact another node to exchange gossip with. It is not possible to flood the network with the gossiping messages as they do not require instant propagation of the gossips.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Flooding attack","id":"228","title":"Flooding attack"},"229":{"body":"We consider an adversary whose goal is to deanonymize users by linking their transactions to their IP addresses. This model is analysed in Dandelion . PolderCast already allows us to provide some reasonable guarantees against this adversary model. Node do not share their links, they share a limited number of gossips based on what a node believe the recipient node might be interested in; While some links can be guessed (those of the Rings module for example), some are too arbitrary ( Vicinity or Cyclon ) to determined the original sender of a transaction;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Anonymity Against distributed adversaries","id":"229","title":"Anonymity Against distributed adversaries"},"23":{"body":"In order to facilitate the handling of unreachable nodes or of misbehaving ones we have built a node policy tooling. Currently, we collect connectivity statuses for each node. The policy can then be tuned over the collected data to apply some parameters when connecting to a given node, as well as banning nodes from our topology. For each node, the following data is collected: Connection statuses: The failed connection attempts and when it happened; Latency Last message used per topic item (last time a fragment has been received from that node, last time a block has been received from that node…) In the future, we may expand the polocy to include data collected at the blockchain level lile: Faults (e.g. trying to send an invalid block) Contributions in the network Their blockchain status (e.g. tips)","breadcrumbs":"Core Ledger » General Concepts » Network overview » Security and countermeasures","id":"23","title":"Security and countermeasures"},"230":{"body":"We consider an adversary that could intercept the communication between two nodes. Such adversary could: Escalate acquired knowledge to break the node privacy (e.g. user’s public keys); Disrupt the communication between the two nodes; Potentially we might use SSL/TLS with dynamic certificate generation. A node would introduce itself to the network with its certificate. The certificate is then associated to this node and would be propagated via gossiping to the network.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Man in the middle","id":"230","title":"Man in the middle"},"231":{"body":"Each participants in the protocol need: Key Evolving signature (KES) secret key Verifiable Random Function (VRF) secret key Apart from the common block deserialization and hashing verification, each block requires: 2 VRF verification 1 KES verification. Considering the perfect network, it allow to calculate how many sequential hops, a block can hope to reach at a maximum bound. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » In relation to Ouroboros Genesis","id":"231","title":"In relation to Ouroboros Genesis"},"232":{"body":"This section describes tools and libraries used to test catalyst-core components. Jormungandr test libraries includes projects: jormungandr-automation - sets of apis for automating all node calls and node sub-components (REST, GRPC, logging etc.), hersir - api & cli for bootstrapping entire network of nodes with some predefined configuration. Project takes care of proper settings for all nodes as well as block0, thor - testing api & cli for all wallet operations, mjolnir - load tool (api & cli) for all kind of jormungandr transactions, loki - api & cli for sending invalid/adversary load as well as boostraping adversary node.","breadcrumbs":"Core Ledger » testing » testing » testing","id":"232","title":"testing"},"233":{"body":"Incubator of all testing apis for the node and jcli:","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr-automation","id":"233","title":"jormungandr-automation"},"234":{"body":"In order to build jormungandr-automation in main project folder run: cd testing/jormungandr-automation\ncargo build","breadcrumbs":"Core Ledger » testing » jormungandr-automation » build","id":"234","title":"build"},"235":{"body":"Api that can be used to run jcli executable underneath and is capable to assert outcome of command. It can work with already installed jcli (using PATH variable) or custom path. For Example: let jcli: JCli = Default::default(); let private_key = jcli.key().generate(\"ed25519-extended\"); let public_key = jcli.key().convert_to_public_string(&private_key);","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jcli testing api","id":"235","title":"jcli testing api"},"236":{"body":"Collection of automation modules for node interaction and configuration: configuration - allows to configure node & blockchain settings, explorer - explorer configuration/bootstrap & interaction module, grpc - module for grpc internode connection library handling. capable of sending some RPC calls as well as bootstrap receiver instance, legacy - module for loosely typed configuration. This allow to bootstrap older version of node, for example to satisfy need on cross-version testing, rest - module for jormungandr REST api testing, starter - module for bootstrapping node, verifier - node state verifier logger - api for jormungandr log handling/assertion process - api for handling jormungandr process","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr testing api","id":"236","title":"jormungandr testing api"},"237":{"body":"Bunch of loosely coupled utility modules, mostly for additional configuration capabilities or benchmarking: benchmark - measurements framework for various purposes, for example bootstrap time or how many transactions were successfully handled by node, vit - additional helpers for voting capabilities, asserts - asserts extensions, tailored for node needs, block0 - block0 extensions, like easier access to blockchain setting or function to download block0, collector - input collector utils, configuration - test configuration helper (apps paths etc.), keys - create default keys, observer - simple observer framework, panic - panic error reporting in test code, process - process extensions, resource - resources manager, mostly for tls certificates used for testing, storage - node storage generators, time - time utils, mostly for waiting for particular block date, verify - substitute of asserts in case we don’t want to panic eagerly when assertion is failed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-automation » testing","id":"237","title":"testing"},"238":{"body":"Hersir is a cli & api project capable of bootstrapping local jormungandr network which can be exercised by various tools.","breadcrumbs":"Core Ledger » testing » Hersir » Hersir","id":"238","title":"Hersir"},"239":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Hersir » build & install","id":"239","title":"build & install"},"24":{"body":"The p2p policy provides some more fine control on how to handle nodes flagged as not behaving as expected (see the list of data collected). It currently works as a 4 levels: trusted, possible contact, quarantined, forgotten. Each gossip about a new node will create a new entry in the list of possible contact. Then the policy, based on the logged data associated to this node, may decide to put this node in quarantine for a certain amount of time. Trusted nodes are the ones to which we were able to connect successfully. A connectivity report against those nodes will make them transition to the possible contact level, while a successful connection attempt will promote them again to trusted. The changes from one level to another is best effort only. Applying the policy may be costly so the node applies the policy only on the node it is interested about (a gossip update or when reporting an issue against a node). This guarantees that the node does not spend too much time policing its database. And it also makes sure that only the nodes of interest are up to date. However it is possible for the node to choose, at a convenient time, to policy the whole p2p database. This is not enforced by the protocol. Disposition Description available Node is available for the p2p topology for view selection and gossips. quarantined Node is not available for the p2p topology for view selection or gossips. After a certain amount of time, if the node is still being gossiped about, it will be moved to available. forgotten A node forgotten is simply removed from the whole p2p database. However, if the node is still being gossiped about it will be added back as available and the process will start again. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Policy","id":"24","title":"Policy"},"240":{"body":"The simplest configuration is available by using command: hersir --config res\\example.yaml it results in small network with all data dumped to current folder","breadcrumbs":"Core Ledger » testing » Hersir » quick start","id":"240","title":"quick start"},"241":{"body":"Simple example: nodes: - spawn_params: alias: passive leadership_mode: passive persistence_mode: inmemory trusted_peers: - leader - spawn_params: alias: leader leadership_mode: leader persistence_mode: inmemory blockchain: discrimination: test consensus: bft nodes sections defines each network node. We can define alias, that is then used to express relations between the nodes. Also if we keep everything in memory or if node can mint blocks or not. blockchain section defines blockchain parameters, like what is the consensus and if we are using test or production addresses discrimination.","breadcrumbs":"Core Ledger » testing » Hersir » configuration","id":"241","title":"configuration"},"242":{"body":"nodes spawn_params alias: string (mandatory) - reference name of the node. Example: “alias”, bootstrap_from_peers: bool (optional) - should node bootstrap from trusted peers. By default it is auto-evaluated: If node doesn’t have any trusted peers it won’t bootstrap from peers, faketime: custom (optional) - inject fake time settings. For example: faketime: { /// Clock drift (1 = no drift, 2 = double speed) drift: 1, /// Offset from the real clock in seconds offset: 2, } gossip_interval: time (optional) - node gossip interval with the rest of the network. Format: number unit. For example: 10 s, jormungandr: path (optional) - path to jormungandr node executable, leadership_mode: enum (optional) - node leadership mode. Possible values: passive - node won’t be able to produce blocks, leader - node will be able to mint blocks, listen_address: string (optional) - override listen address for node. Example: /ip4/127.0.0.1/tcp/10005, log_level: enum (optional) - log level, Possible values: (info/warn/error/debug/trace) max_bootstrap_attempts: number (optional) - maximum number of bootstrap attempt before abandon, max_connections: number (optional) - max connection node will create with other nodes, max_inbound_connections: number (optional) - max inbound connection that node will accept, mempool: custom (optional) - mempool configuration. Example: mempool: pool_max_entries: 100000 log_max_entries: 100000 network_stuck_check: time (optional) - check interval which node use to verify blockchain advanced. Format: number unit. For example: 10 s, node_key_file: path (optional) - path to node network key, persistence_mode: enum (optional) - set persistence mode. Possible values: inmemory - everything is kept in node memory. If node restarts, all history is gone, persistence - node uses local storage to preserve current state, persistent_fragment_log: path (optional) - persistent fragment log serializes every fragment node receives via REST api, policy: custom (optional) - defines nodes quarantine configuration. Example: policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" preferred_layer: custom (optional) - defines preferences in gossiping. Example: layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 public_address: String (optional)- override public address for node. Example: /ip4/127.0.0.1/tcp/10005, skip_bootstrap: bool (optional) - skips node bootstrap step, topics_of_interest: custom (optional) - topics of interests describe how eager node will fetch blocks or transactions: topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool verbose: bool (optional) - enable verbose mode, which prints additional information, trusted_peers: List (optional) - list of trusted peers. Example: trusted_peers: - leader - leader_1 blockchain block0_date: date (optional) - block0 date, if not provided current date would be taken, block_content_max_size: number (optional) - maximum block content size in bytes, committees: list (optional) - list of wallet aliases which will be committees (capable of tallying the vote), consensus: enum (optional) - blockchain consensus, possible values: Bft,GenesisPraos, consensus_genesis_praos_active_slot_coeff: float (optional) - Determines minimum stake required to try becoming slot leader, must be in range (0,1], discrimination: enum (optional) - type of discrimination of the blockchain: production, if this blockchain is meant for production test, otherwise external_committees: list (optional) - list of committees to be included in block0, external_consensus_leader_ids: list (optional) - list of external leaders id (apart from already defined nodes), external_wallets: list (optional) - list of external wallets. Example: external_wallets: - alias: Alice address: ca1q47vz09320mx2qcs0gspwm47lsm8sh40af305x759vvhm7qyjyluulja80r value: 1000000000 tokens: {} kes_update_speed: number (optional) - the speed to update the KES Key in seconds, linear_fee: custom (optional) - fee calculations settings, slot_duration: number (optional) - The slot duration, in seconds, is the time between the creation of 2 blocks, slots_per_epoch: number (optional) - number of slots in each epoch, tx_max_expiry_epochs: number (optional) - transaction ttl (expressed in number of epochs). session jormungandr: path (optional) - override path to jormungandr. By default it’s taken from PATH variable, root: path (optional) - override path to local storage folder. By default all related data is dumped ino TEMP folder, generate_documentation: bool (optional) - generate documentation files into local storage folder, mode: enum (optional) - set hersir working mode. By default it’s “standard”, which just prints information about correct nodes bootstrap. Possible values: monitor - prints current nodes status as progress bar, standard - just prints information about correct nodes bootstrap, interactive - spawn helper cli, which allows to interact with nodes, log: enum (optional) - log level, Possible values: (info/warn/error/debug/trace), title: string (optional) - give local storage folder name instead of random one.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available parameters","id":"242","title":"full list of available parameters"},"243":{"body":"Full list of commands is available on hersir --help command. hersir 0.1.0 USAGE: hersir [FLAGS] --config FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose OPTIONS: -c, --config Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available commands","id":"243","title":"full list of available commands"},"244":{"body":"Integration test is a container project for all jormungandr & jcli tests. Tests are validating node correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » jormungandr-integration-tests","id":"244","title":"jormungandr-integration-tests"},"245":{"body":"Jormungandr tests architecture relies on test pyramid approach. Most of the effort is put into until and api level and small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Architecture of tests","id":"245","title":"Architecture of tests"},"246":{"body":"","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Quick start","id":"246","title":"Quick start"},"247":{"body":"In order to run test jormungandr & jcli need to be installed or prebuild.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Prerequisites","id":"247","title":"Prerequisites"},"248":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Start tests","id":"248","title":"Start tests"},"249":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Tests categories","id":"249","title":"Tests categories"},"25":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Node organization » Node organization","id":"25","title":"Node organization"},"250":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run all functional tests","id":"250","title":"How to run all functional tests"},"251":{"body":"cd testing/jormungandr-integration-tests\ncargo test jcli","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run jcli only functional tests","id":"251","title":"How to run jcli only functional tests"},"252":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node functional tests","id":"252","title":"How to run single node functional tests"},"253":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node performance tests","id":"253","title":"How to run single node performance tests"},"254":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node endurance tests","id":"254","title":"How to run single node endurance tests"},"255":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::network --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network functional tests","id":"255","title":"How to run network functional tests"},"256":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network performance tests","id":"256","title":"How to run network performance tests"},"257":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network endurance tests","id":"257","title":"How to run network endurance tests"},"258":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Frequency","id":"258","title":"Frequency"},"259":{"body":"Loki is an adversary node implementation and api which operates on jormungandr network.","breadcrumbs":"Core Ledger » testing » Loki » Loki","id":"259","title":"Loki"},"26":{"body":"The secure enclave is the component containing the secret cryptographic material, and offering safe and secret high level interfaces to the rest of the node.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Secure Enclave","id":"26","title":"Secure Enclave"},"260":{"body":"In order to build hersir in main project folder run: cd testing/loki\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Loki » Build & Install","id":"260","title":"Build & Install"},"261":{"body":"Loki can be used bootstrap using cli: loki --genesis-block block0.bin --listen-address 127.0.0.1:8080 -s secret.yaml where: genesis-block - Path to the genesis block (the block0) of the blockchain listen-address - Specifies the address the node will listen secret - Set the secret node config (in YAML format). Example: ---\nbft: signing_key: ed25519_sk1w2tyr7e2w26w5vxv65xf36kpvcsach8rcdmlmrhg3rjzeumjnzyqvdvwfa Then utilizing rest interface of loki node one can send some invalid GRPC messages to rest of the network: curl --location --request POST 'http://127.0.0.1:8080/invalid_fragment' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"address\": \"127.0.0.1:1000\", \"parent\": \"tip\"\n}' where: address - address of “victim” node, parent - Parent block. Possible values: tip - current tip of “victim” node, block0 - block0, {Hash} - arbitrary parent block which hash is provided in request","breadcrumbs":"Core Ledger » testing » Loki » Quick Start","id":"261","title":"Quick Start"},"262":{"body":"/invalid_hash - Sends block with invalid hash, /invalid_signature - Sends block with invalid by wrong leader signature, /nonexistent_leader - Sends block with non-existing leader, /wrong_leader - Sends block with signed with invalid leader,","breadcrumbs":"Core Ledger » testing » Loki » Other possible operations","id":"262","title":"Other possible operations"},"263":{"body":"Loki also provides API for performing adversary operations, like sending invalid fragments: use loki::{AdversaryFragmentSender, AdversaryFragmentSenderSetup}; let mut sender = ... let receiver = .. // node initialization let jormungandr = ... let adversary_sender = AdversaryFragmentSender::new( jormungandr.genesis_block_hash(), jormungandr.fees(), BlockDate::first().next_epoch().into(), AdversaryFragmentSenderSetup::no_verify(), ); adversary_sender .send_faulty_transactions_with_iteration_delay( 10, &mut sender, &receiver, &jormungandr, Duration::from_secs(5), ) .unwrap(); Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Loki » API","id":"263","title":"API"},"264":{"body":"Mjolnir is a load cli & api project which operates on jormungandr node.","breadcrumbs":"Core Ledger » testing » Mjolnir » Mjolnir","id":"264","title":"Mjolnir"},"265":{"body":"In order to build mjolnir in main project folder run: cd testing/mjolnir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Mjolnir » Build & Install","id":"265","title":"Build & Install"},"266":{"body":"","breadcrumbs":"Core Ledger » testing » Mjolnir » Quick Start","id":"266","title":"Quick Start"},"267":{"body":"Mjolnir can be used as a cli. It is capable of putting various load on jormungandr node. It has couple of different load types: explorer - Explorer load fragment - Fragment load passive - Passive Nodes bootstrap rest - Rest load Simplest load configuration is to use rest load with below parameters: Rest load USAGE: mjolnir.exe rest [FLAGS] [OPTIONS] --duration --endpoint FLAGS: -h, --help Prints help information -m, --measure Prints post load measurements -V, --version Prints version information OPTIONS: -c, --count Number of threads [default: 3] --delay Amount of delay [milliseconds] between sync attempts [default: 50] -d, --duration Amount of delay [seconds] between sync attempts -e, --endpoint Address in format: http://127.0.0.1:8002/api/ -b, --progress-bar-mode Show progress bar [default: Monitor]","breadcrumbs":"Core Ledger » testing » Mjolnir » CLI","id":"267","title":"CLI"},"268":{"body":"Mjolnir main purpose is to serve load api: use jortestkit::load::{self, ConfigurationBuilder as LoadConfigurationBuilder, Monitor};\nuse std::time::Duration; //node initialization let mut jormungandr = ... let rest_client = jormungandr.rest(); // create request generator for rest calls let request = mjolnir::generators::RestRequestGen::new(rest_client); // duration based load run (40 seconds) let config = LoadConfigurationBuilder::duration(Duration::from_secs(40)) // with 5 threads .thread_no(5) // with delay between each request 0.01 s .step_delay(Duration::from_millis(10)) // with monitor thread monitor status of load run each 0.1 s .monitor(Monitor::Progress(100)) // with status printer which prints out status of load run each 1 s .status_pace(Duration::from_secs(1_000)) .build(); // initialize load in sync manner // (duration of each request is calculated by time difference between receiving response and sending request ) let stats = load::start_sync(request, config, \"Jormungandr rest load test\"); // finally some way to assert expected correctness, like percentage of successful requests assert!((stats.calculate_passrate() as u32) > 95);","breadcrumbs":"Core Ledger » testing » Mjolnir » API","id":"268","title":"API"},"269":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Mjolnir » full list of available commands","id":"269","title":"full list of available commands"},"27":{"body":"The node’s network is 3 components: Intercommunication API (GRPC) Public client API (REST) Control client API (REST) More detailed information here","breadcrumbs":"Core Ledger » General Concepts » Node organization » Network","id":"27","title":"Network"},"270":{"body":"Thor is a wallet cli & wallet api project which operates on jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Core Ledger » testing » Thor » Thor","id":"270","title":"Thor"},"271":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Thor » Build & Install","id":"271","title":"Build & Install"},"272":{"body":"","breadcrumbs":"Core Ledger » testing » Thor » Quick Start","id":"272","title":"Quick Start"},"273":{"body":"Thor can be used as a wallet cli. It is capable of sending transactions or pull data from node. The simplest usage example is available by using commands: register new wallet based on secret key: thor wallets import --alias darek --password 1234 secret.file connect to node rest API: thor connect https://jormungandr.iohk.io/api use recently created wallet for rest of commands: thor wallets use darek sync with the node regarding wallet data: thor wallets refresh send transaction: thor send tx --ada 5 --address ca1q5srhkdfuxqdm6h57mj45acxcdr57cr5lhddzkrjqyl8mmw62v9qczh78cu -pin 1234","breadcrumbs":"Core Ledger » testing » Thor » CLI","id":"273","title":"CLI"},"274":{"body":"Thor also allows you to use it as Api to perform any wallet operations from the code: use thor::{Wallet, FragmentSender, FragmentSenderSetup, FragmentVerifier}; let receiver = thor::Wallet::default(); let mut sender = thor::Wallet::default(); // node bootstrap let jormungandr = ... let fragment_sender = FragmentSender::from_with_setup( jormungandr.block0_configuration(), FragmentSenderSetup::no_verify(), ); fragment_sender .send_transaction(&mut sender, &receiver, &jormungandr, 1.into()) .unwrap();","breadcrumbs":"Core Ledger » testing » Thor » API","id":"274","title":"API"},"275":{"body":"Thor api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.thor). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Core Ledger » testing » Thor » Configuration","id":"275","title":"Configuration"},"276":{"body":"Full list of commands is available on thor --help command. thor 0.1.0\nCommand line wallet for testing Jormungandr USAGE: thor FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occured confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) refresh Pulls wallet data from the node send Sends fragments to nodes status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Thor » full list of available commands","id":"276","title":"full list of available commands"},"277":{"body":"Glossary: blockchains : the current blockchain and possibly different known forks. clock : general time tracking to know the time in blockchain unit (epoch/slot) tip : the current fork that is considered the correct one, related to consensus algorithm.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Internal Design","id":"277","title":"Internal Design"},"278":{"body":"Each node runs several tasks. Task is a process with a clearly defined interface that abstracts a particular task. General tasks: Network task : handle new connections, and perform lowlevel queries. It does queries parsing and routing them to the other tasks: block, client or transaction tasks. Block task : handles blocks reception from other nodes and the leadership thread. The blocks can be external and internal. External block (…), and internal block (…). When the task receives an external block it validates the block. If validation succeeds then the task appends blocks to the blockchain and checks if the tip needs any changes. When the task receives an internal block it does the same actions except for block validation. And then broadcasts the change of the tip to the network thread. Leadership task : waits for each new slot, evaluates if this node is a slot leader. In case if it is, the task creates a new block (with a set of known transactions) referencing the latest known and agreed block in the blockchain. Then the task sends it to the block thread for processing. Client task : receives block header/body queries. This task is in charge of in accord [!!!] with the blockchains, reply to the client. Transaction task : receives new transactions from the network, validates transaction and handle duplicates. Also the broadcast to other nodes new (valid) transaction received. Internal Architecture","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Tasks","id":"278","title":"Tasks"},"279":{"body":"The blockchain module is responsible to maintaining the blockchain (i.e.) the blocks, the current working branches (we will come back to it in a bit), the different states associated to every blocks, the epoch’s data (the parameters, the stake active distribution and the leadership schedule). It is fairly easy to maintain the blocks of a blockchain. They all have the identifier of the parent block. Storing them is another story though and is not covered here. Blockchain Data structure block0 or blockx.y are blocks of the blockchain. They link to the parent block except for the block0 which may not have parents here (there is a special case where we could set a parent pointing to the block of a previously known state of the blockchain); legder0 or ledgerx.y are states of the blockchain at a given block; epoch x parameters are the blockchain parameters that are valid for all the epoch x; epoch N stake distribution are the stake distribution as extracted from epoch N; epoch x leadership is the leadership schedule for the epoch x. This may seem a bit overwhelming. Let’s follow the flow of block creations and validation on this blockchain:","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Maintaining the blockchain’s state","id":"279","title":"Maintaining the blockchain’s state"},"28":{"body":"This interface is a binary, efficient interface using the protobuf format and GRPC standard. The protobuf files of types and interfaces are available in the source code. The interface is responsible to communicate with other node in the network: block sending and receiving fragments (transaction, certificates) broadcast peer2peer gossip","breadcrumbs":"Core Ledger » General Concepts » Node organization » Intercommunication API (GRPC)","id":"28","title":"Intercommunication API (GRPC)"},"280":{"body":"Let’s start with first initializing the blockchain from the block0. Blockchain Data structure From block0 The first block , the block0, is the block that contains the initial data of the blockchain. From the block0 we can construct the first ledger : the ledger0. From the ledger0 we can extract two objects: epoch 1 parameters which will contains the fee setting to apply during the epoch 1; epoch 0 stake distribution. This is the stake distribution at the end of the epoch 0 (and before the following epoch starts); And now from the epoch 0 stake distribution we can determine the leadership schedules for the epoch 1 and the epoch 2.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » From the block 0","id":"280","title":"From the block 0"},"281":{"body":"The view from the point of view of a block k at an epoch N (block N.k) looks like the following: Blockchain Data structure From blockk It links to the parent block: block N.(k - 1). This is important because it allows us to retrieve the ledger state at the block N.(k - 1). In order to accept the block N.k in the blockchain we need to validate a couple of things: the block N.k is correctly referring to the block N.(k - 1): the block date is increasing; the block number is strictly monotonically increasing; the schedule is correct: the block has been created by the right stake pool at the right time; the block N.k is updating the parent’s ledger state (ledger N.(k - 1)) and is producing a valid new ledger: ledger N.k","breadcrumbs":"Core Ledger » Internal Design » Internal Design » for a block","id":"281","title":"for a block"},"282":{"body":"Epoch transition happen when we switch to an epoch to the following one. Blockchain Data structure Transition","breadcrumbs":"Core Ledger » Internal Design » Internal Design » epoch transition","id":"282","title":"epoch transition"},"283":{"body":"Originally the voting blockchain was designed to be manually started and required a full block 0 and a configuration file to be created and distributed to nodes before it could commence. This made automated deployment difficult and introduces necessary manual steps into the process of running the voting system. To resolve this, the voting system is modified to allow the blockchain and parts of the configuration to be automatically created based solely on the parameters of the next election.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Automatic deployment of the voting blockchain","id":"283","title":"Automatic deployment of the voting blockchain"},"284":{"body":"There are two sources of data required to start the blockchain. Block 0 and the config YAML file. To ease deployment, Block 0 will be created dynamically based on data held in our distributed object storage (which is currently a Postgresql Database.) As are certain parameters currently required for the configuration file. The blockchain would still need to retain the current method for starting, in addition to the new “auto” mode. In essence, automatic configuration entails: Minimizing manual config items to only those that unavoidably need to be defined. Generating configuration for other items where possible from known local state, and only having configuration items for these to override the defaults. Sharing data in a central repository of local configuration items that other nodes would require. Reading other data directly from their source of truth (Such as the schedule of the election, voting power snapshot data and proposals/vote plan information.)","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Overview","id":"284","title":"Overview"},"285":{"body":"The node is configured by a YAML file which contains the following data. In the code, every config parameter should be accompanied by detailed a detailed documentation comment. secret_file: - Optional Path (to what, used for what?) storage: - Optional Path (to what, used for what?) log: - Optional Logger settings. level: - Optional Logger level, can be \"Trace\", \"Debug\", \"Info\". \"Warn\" and \"Error\". Should default to \"Info\" if not set. format: - Format of the logs, can be \"plain\" and \"json\". Should default to \"json\" if not set. output: - Optional destination of the log output. Options need to be fully documented . Should default to stdout if not defined. trace_collector_endpoint: - Optional Options need to be fully documented . Should default to None (ie, no external logging) if not defined. mempool: Optional configuration of the mempool. Should default as specified here. pool_max_entries: - Optional - maximum number of entries in the mempool. Should default to 1,000,000 if not set. log_max_entries: - Optional - maximum number of entries in the fragment logs. Should default to ???? if not set. persistent_log: - Optional - path to the persistent log of all incoming fragments. A decision needs to be made if persistent logging is normally desired. If it is, it should default to a location in /var. If not, it should default to None and be disabled. leadership: - Optional - the number of entries allowed in the leadership logs. logs_capacity: - Optional - Should default to ???? if not set. rest: - Optional - Enables REST API. listen: - Optional - Address to listen to rest api requests on. Should default to “0.0.0.0:12080”. This default is open to suggestions tls: - Optional - Define inbuilt tls support for the listening socket. If not specified, TLS is disabled. The default is TLS Disabled. cert_file: - Path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: - Path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: - Optional - Defines CORS settings. Default should be as shown in the individual entries. allowed_origins - Origin domains we accept connections from. Defaults to “*”. max_ages_secs - How long in seconds to cache CORS responses. Defaults to 60. allowed_headers - A list of allowed headers in the preflight check. If the provided list is empty, all preflight requests with a request header will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. allowed_methods - A list of allowed methods in the preflight check. If the provided list is empty, all preflight requests will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. STILL TODO * `jrpc` - Optional. No idea what this does yet??? TODO: Document it and defaults. * `p2p` - Peer to Peer config. #[serde(default)] pub p2p: P2pConfig, #[serde(default)] pub http_fetch_block0_service: Vec, #[cfg(feature = \"prometheus-metrics\")] pub prometheus: Option, /// the time interval with no blockchain updates after which alerts are thrown #[serde(default)] pub no_blockchain_updates_warning_interval: Option, #[serde(default)] pub bootstrap_from_trusted_peers: bool, #[serde(default)] pub skip_bootstrap: bool, pub block_hard_deadline: Option, Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Configuration","id":"285","title":"Configuration"},"286":{"body":"sequenceDiagram actor U as User participant B as Cardano Block Chain participant Br as Cardano-Catalyst Bridge participant C as Catalyst Backend U->>B: Registeration Txn Note right of U: Type/Public Key/Reward Address Note over B: Block Minted B->>Br: Reads Chain Tip, detects Registration Br->>C: Records Latest Registration U->>C: Requests Priviliged Operation Note over C: Generates Random Challenge C->>U: Challenge Sent Note over U: Signs Challenge with Public Key U->>C: Challenge Response Note right of U: Public Key/Challenge Signature Note over C: Validates Response alt Public Key Registered & Signature Valid C->>U: Authorized Note left of C: Authorized
Session Established loop Authorized U->>C: Privileged Operation C->>U: Priviliged Response end else Unauthorized C->>U: Unauthorized end Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Permissionless Auth » Permissionless Auth","id":"286","title":"Permissionless Auth"},"287":{"body":"Welcome to the Catalyst testing User Guide. Vit testing is a family of projects, with the aim to support all quality assurance activities in Catalyst. One can find here: catalyst backend deployment tool, catalyst backend mock, integration tests, registration service and registration verify service, snapshot service, snapshot wormhole, custom proxy for catalyst backend, cli voting app implementation, load driver imitating voting app users.","breadcrumbs":"Catalyst testing User Guide » Catalyst testing User Guide » Catalyst testing User Guide","id":"287","title":"Catalyst testing User Guide"},"288":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"288","title":"Iapyx"},"289":{"body":"Iapyx is a wallet cli & wallet api project which operates on catalyst-jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"289","title":"Iapyx"},"29":{"body":"This interface is for simple queries for clients like: Wallet Client & Middleware Analytics & Debugging tools Explorer it’s recommended for this interface to not be opened to the public. TODO: Add a high level overview of what it does","breadcrumbs":"Core Ledger » General Concepts » Node organization » Public API REST","id":"29","title":"Public API REST"},"290":{"body":"In order to build iapyx in main project folder run: cd iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Build & Install","id":"290","title":"Build & Install"},"291":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Quick Start","id":"291","title":"Quick Start"},"292":{"body":"Iapyx can be used as a wallet cli. It is capable of sending votes or pull data from node. The simplest usage example is available by using commands: register new wallet based on qr code: iapyx wallets import qr qr_file.png --pin 1234 connect to node rest API: iapyx connect https://catalyst-backend.io/api use recently created wallet for rest of commands: iapyx wallets use darek sync with the node and get wallet data: iapyx wallets refresh send vote: iapyx vote single --choice yes --pin --id {proposal_id}","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » CLI","id":"292","title":"CLI"},"293":{"body":"Iapyx can be used as api in order to perform voting operations from the code: let wallet_proxy = spawn_network(...); let secret_file_path = Path::new(\"wallet_alice\"); let mut alice = iapyx::ControllerBuilder::default() .with_backend_from_client(wallet_proxy.client())? .with_wallet_from_secret_file(secret_file_path.as_ref())? .build() let proposals = alice.proposals().unwrap(); let votes_data = proposals .iter() .take(batch_size) .map(|proposal| (proposal, Choice::new(0))) .collect(); let fragment_ids = alice .votes_batch(votes_data) .unwrap() .iter() .map(|item| item.to_string()) .collect();","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » API","id":"293","title":"API"},"294":{"body":"Iapyx api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.iapyx). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Configuration","id":"294","title":"Configuration"},"295":{"body":"Full list of commands is available on iapyx --help command. iapyx 0.0.1\nCommand line wallet for testing Catalyst USAGE: iapyx.exe FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occurred confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set funds Prints information about voting funds help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) proposals Prints proposals available to vote on refresh Pulls wallet data from the catalyst backend status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses vote Sends votes to backend votes Prints history of votes wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » full list of available commands","id":"295","title":"full list of available commands"},"296":{"body":"Iapyx-load is a load cli & api project which operates on catalyst backend.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Iapyx Load","id":"296","title":"Iapyx Load"},"297":{"body":"In order to build iapyx-load in main project folder run: cd testing/iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Build & Install","id":"297","title":"Build & Install"},"298":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Quick Start","id":"298","title":"Quick Start"},"299":{"body":"Iapyx-load can be used as a cli. It is capable of putting various load on catalyst backend. Available load types: node-only - Load which targets blockchain calls only static-only - Load which targets static data only simulation - Load with simulate real user case (both blockchain and static data in some relation) Also node-only load provides two load characteristic: bursts - Bursts mode. Sends votes in batches and then wait x seconds const - Constant load. Sends votes with x votes per second speed And two scenario types: duration - Duration based load. Defines how much time load should run count - Requests count based load. Defines how many requests load should sent in total Simplest load configuration is to use node-only load with below parameters: iapyx-load node-only const count --help USAGE: iapyx-load.exe node-only const count [FLAGS] [OPTIONS] --requests-per-thread FLAGS: --debug Print additional information --help Prints help information --read-from-filename Read pin from filename of each qr code --reuse-accounts-early Update all accounts state before sending any vote --reuse-accounts-lazy Update account state just before sending vote -h, --https Use https for sending fragments -V, --version Prints version information OPTIONS: -a, --address
Address in format: 127.0.0.1:8000 [default: 127.0.0.1:8000] -n, --requests-per-thread How many requests per thread should be sent -c, --criterion Pass criteria -d, --delay Amount of delay [miliseconds] between requests [default: 10000] --global-pin Global pin for all qr codes [default: 1234] -b, --progress-bar-mode Show progress. Available are (Monitor,Standard,None) [default: Monitor] -q, --qr-codes-folder Qr codes source folder -s, --secrets-folder Secrets source folder --status-pace How frequent (in seconds) to print status [default: 1] -t, --threads Prints nodes related data, like stats,fragments etc [default: 3]","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » CLI","id":"299","title":"CLI"},"3":{"body":"Welcome to the Jörmungandr User Guide. Jörmungandr is a node implementation, written in rust, with the initial aim to support the Ouroboros type of consensus protocol. A node is a participant of a blockchain network, continuously making, sending, receiving, and validating blocks. Each node is responsible to make sure that all the rules of the protocol are followed.","breadcrumbs":"Core Ledger » Core Ledger » Core Ledger","id":"3","title":"Core Ledger"},"30":{"body":"This interface is not finished, but is a restricted interface with ACL, to be able to do maintenance tasks on the process: Shutdown Load/Retire cryptographic material TODO: Detail the ACL/Security measure Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Control API REST","id":"30","title":"Control API REST"},"300":{"body":"Iapyx load main purpose is to serve as load api: use iapyx::{NodeLoad, NodeLoadConfig};\nuse jortestkit::{ load::{ConfigurationBuilder, Monitor}, measurement::Status,\n}; ... let no_of_threads = 10; let no_of_wallets = 40_000; let mut qr_codes_folder = Path::new(\"qr-codes\"); let config = ConfigurationBuilder::duration(parameters.calculate_vote_duration()) .thread_no(threads_no) .step_delay(Duration::from_millis(delay)) .fetch_limit(250) .monitor(Monitor::Progress(100)) .shutdown_grace_period(Duration::from_secs(60)) .build(); let load_config = NodeLoadConfig { batch_size, use_v1: false, config, criterion: Some(100), address: \"127.0.0.1:8080\".to_string(), qr_codes_folder: Some(qr_codes_folder), secrets_folder: None, global_pin: \"\".to_string(), reuse_accounts_lazy: false, reuse_accounts_early: false, read_pin_from_filename: true, use_https: false, debug: false, }; let iapyx_load = NodeLoad::new(load_config); if let Some(benchmark) = iapyx_load.start().unwrap() { assert!(benchmark.status() == Status::Green, \"too low efficiency\"); }","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » API","id":"300","title":"API"},"301":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » full list of available commands","id":"301","title":"full list of available commands"},"302":{"body":"Integration test is a container project for all catalyst e2e and integration tests. Tests are validating network correctness, stability. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » integration-tests","id":"302","title":"integration-tests"},"303":{"body":"Integration tests architecture relies on test pyramid approach. Where most of the effort is put into component and integration level and finally small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Architecture of tests","id":"303","title":"Architecture of tests"},"304":{"body":"","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Quick start","id":"304","title":"Quick start"},"305":{"body":"In order to run test integration tests below components need to be installed or prebuild: [vit-servicing-station-server|https://github.com/input-output-hk/vit-servicing-station/tree/master/vit-servicing-station-server] [jormungandr|https://github.com/input-output-hk/jormungandr/tree/master/jormungandr] [valgrind|https://github.com/input-output-hk/vit-testing/tree/master/valgrdin]","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Prerequisites","id":"305","title":"Prerequisites"},"306":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Start tests","id":"306","title":"Start tests"},"307":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Tests categories","id":"307","title":"Tests categories"},"308":{"body":"cd integration-tests\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run all functional tests","id":"308","title":"How to run all functional tests"},"309":{"body":"cd integration-tests\ncargo test --features testnet-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run testnet functional tests","id":"309","title":"How to run testnet functional tests"},"31":{"body":"In a proof of stake, participants are issued a stake equivalent to the amount of coins they own. The stake is then used to allow participation in the protocol, simply explained as: The more stake one has, the more likely one will participate in the good health of the network. When using the BFT consensus, the stake doesn’t influence how the system runs, but stake can still be manipulated for a later transition of the chain to another consensus mode.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake","id":"31","title":"Stake"},"310":{"body":"cd integration-tests\ncargo test non_functional::load --features load-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run load tests","id":"310","title":"How to run load tests"},"311":{"body":"cd testing/jormungandr-integration-tests\ncargo test non_functional::soak --features soak-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run network endurance tests","id":"311","title":"How to run network endurance tests"},"312":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Frequency","id":"312","title":"Frequency"},"313":{"body":"Registration service is REST service purely for test purposes which is capable to interact with: voter registration cli cardano cli vit-kedqr","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"313","title":"Registration service"},"314":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"314","title":"build"},"315":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"315","title":"quick start"},"316":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"316","title":"clients"},"317":{"body":"Registration CLI is cli utility tool which help to interact with registration service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"317","title":"cli"},"318":{"body":"Example: use registration_service::{ client::rest::RegistrationRestClient, context::State, request::Request, }; ... let payment_skey = Path::new(\"payment.skey\"); let payment_skey = Path::new(\"payment.vkey\"); let payment_skey = Path::new(\"stake.skey\"); let payment_skey = Path::new(\"stake.vkey\"); let payment_skey = Path::new(\"vote.skey\"); let registration_client = RegistrationRestClient::new_with_token(registration_token, registration_address); let registration_request = Request { payment_skey, payment_vkey, stake_skey, stake_vkey, vote_skey, }; let registration_job_id = registration_client.job_new(registration_request).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status); let qr_code_path = temp_dir.child(\"qr_code\"); std::fs::create_dir_all(qr_code_path.path()).unwrap(); let qr_code = registration_client .download_qr(registration_job_id.clone(), qr_code_path.path()) .unwrap(); let voting_key_sk = registration_client .get_catalyst_sk(registration_job_id) .unwrap(); NOTE: see cardano cli guide . This details information how to create payment and stake files.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"318","title":"api"},"319":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Registration CLI","id":"319","title":"Registration CLI"},"32":{"body":"Account are represented by 1 type of address and are just composed of a public key. The account accumulate moneys and its stake power is directly represented by the amount it contains For example: A - Account with 30$ => Account A has stake of 30 B - Account with 0$ => Account B has no stake The account might have a bigger stake than what it actually contains, since it could also have associated UTXOs, and this case is covered in the next section.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the Account Model","id":"32","title":"Stake in the Account Model"},"320":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Build & Install","id":"320","title":"Build & Install"},"321":{"body":"The simplest usage example is available by using commands: register new job: registration-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\\n--stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS} NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This detail information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Quick Start","id":"321","title":"Quick Start"},"322":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » full list of available commands","id":"322","title":"full list of available commands"},"323":{"body":"This section describe configuration file which can be passed as argument for registration service: port: port on which registration-service will be exposed, jcli: path to jcli executable, result-dir: path to folder which artifacts will be dumped (qr-code etc.), cardano-cli: path to jcli executable, voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"jcli\": \"jcli\", \"result-dir\": \"/persist\", \"cardano-cli\": \"./cardano-cli\", \"voter-registration\": \"./voter-registration\", \"vit-kedqr\": \"./vit-kedqr\", \"network\": \"mainnet\", \"token\": \"...\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"323","title":"Configuration"},"324":{"body":"Registration service is REST service purely for test purposes. It is capable to interact with voter registration cli , cardano cli and vit-kedqr .","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"324","title":"Registration service"},"325":{"body":"In order to build registration-verify-service in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"325","title":"build"},"326":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"326","title":"quick start"},"327":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"327","title":"clients"},"328":{"body":"Registration CLI is cli utility tool which help to interact with registration verify service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"328","title":"cli"},"329":{"body":"Example: use registration_verify_service::client::rest::RegistrationVerifyRestClient; ... let registration_verify_client = RegistrationVerifyRestClient::new_with_token(registration_token, registration_address); let mut form = Form::new() .text(\"pin\", \"1234\") .text(\"funds\",\"500\") .text(\"threshold\", \"500\") .file(\"qr\", PathBuf::new(\"my_q.png\")?; let registration_job_id = registration_verify_client.job_new(form).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status);","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"329","title":"api"},"33":{"body":"UTXO are represented by two kind of addresses: single address: those type of address have no stake associated group address: those types of address have an account associated which receive the stake power of the UTXOs value For example with the following utxos: UTXO1 60$ (single address) => has stake of 0 UTXO2 50$ (group address A) \\ ->- A - Account with 10$ => Account A has stake of 100 UTXO3 40$ (group address A) / UTXO4 20$ (group address B) -->- B - Account with 5$ => Account B has stake of 25","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the UTXO Model","id":"33","title":"Stake in the UTXO Model"},"330":{"body":"Registration Verify CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Registration Verify CLI","id":"330","title":"Registration Verify CLI"},"331":{"body":"In order to build registration verify project in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Build & Install","id":"331","title":"Build & Install"},"332":{"body":"The simplest usage example is available by using commands: register new job: registration-verify-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\ --stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS}` NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This details information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Quick Start","id":"332","title":"Quick Start"},"333":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » full list of available commands","id":"333","title":"full list of available commands"},"334":{"body":"This section describe configuration file which can be passed as argument for registration verify service: port: port on which registration-verify-service will be exposed, jcli: path to jcli executable, snapshot-token: token required by snapshot-service , snapshot-address: address of snapshot-service , client-token: access token for client endpoints (verifying voting power etc.), admin-token: access token for admin endpoints (updating snapshot etc.),, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, initial-snapshot-job-id: initial job id from snapshot service that will be used when starting service Example: \"port\": 8080, \"jcli\": \"jcli\", \"snapshot-token\": \"3568b599a65557b2a2e\", \"snapshot-address\": \"https://snapshot.address:8080\", \"client-token\": \"5e19639accf2d76bae\", \"admin-token\": \"605a7c515ec781fd39\", \"network\": \"mainnet\", \"initial-snapshot-job-id\": \"3b49a0ae-5536-454b-8f47-780d9e7da6a0\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"334","title":"Configuration"},"335":{"body":"Service which operates on top of voting tools . It is a interface improvement which expose voting tools as a REST service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Snapshot trigger service","id":"335","title":"Snapshot trigger service"},"336":{"body":"In order to build snapshot-trigger-service in main project folder run: cd snapshot-trigger-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » build","id":"336","title":"build"},"337":{"body":"The simplest configuration is available by using command: snapshot-trigger-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » quick start","id":"337","title":"quick start"},"338":{"body":"In order to start new job one need to send POST request like below: curl --location --request POST 'https://snapshot.io/api/job/new' \\\n--header 'API-Token: ...' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"threshold\": 2000000, // IN Lovelace \"slot-no\": 31842935\n}' Response will contains job status: b0b7b774-7263-4dce-a97d-c167169c8f27 Then query for job status: curl --location --request GET 'https://snapshot.io/api/job/status/b0b7b774-7263-4dce-a97d-c167169c8f27' \\\n--header 'API-Token: ...' and finally fetch snapshot: curl --location --request GET 'https://snapshot.io/api/job/files/get/b0b7b774-7263-4dce-a97d-c167169c8f27/snapshot.json' \\\n--header 'API-Token: ...' which has form: { \"initial\": [ { \"fund\": [ { \"address\": \"ca1q5yr504t56ruuwrp5zxpu469t9slk0uhkefc7admk7wqrs24q6nxwyhwjcf\", \"value\": 14463 }, { \"address\": \"ca1q5ynl2yqez8lmuaf3snvgcw885c9hxxq6uexeevd4al8pct7vx69sljvzxe\", \"value\": 9991 },\n....","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Usage","id":"338","title":"Usage"},"339":{"body":"","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » clients","id":"339","title":"clients"},"34":{"body":"Stake pool are the trusted block creators in the genesis-praos system. A pool is declared on the network explicitly by its owners and contains, metadata and cryptographic material. Stake pool has no stake power on their own, but participants in the network delegate their stake to a pool for running the operation.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake pool","id":"34","title":"Stake pool"},"340":{"body":"Snapshot CLI is cli utility tool which help to interact with snapshot trigger service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » cli","id":"340","title":"cli"},"341":{"body":"Example: use snapshot_trigger_service::{ client::rest::SnapshotRestClient, config::JobParameters, State, }; let job_param = JobParameters { slot_no: Some(1234567), tag: Some(\"fund1\".to_string()), }; let snapshot_token= \"...\"; let snapshot_address = \"...\"; let snapshot_client = SnapshotRestClient::new_with_token(snapshot_token.into(), snapshot_address.into()); let snapshot_job_id = snapshot_client.job_new(job_params).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); let snapshot_jobs_status = snapshot_client.wait_for_job_finish(snapshot_job_id.clone(), wait)?; let snapshot = snapshot_client.get_snapshot(snapshot_job_id)?;","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » api","id":"341","title":"api"},"342":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Registration CLI","id":"342","title":"Registration CLI"},"343":{"body":"In order to build registration-service in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Build & Install","id":"343","title":"Build & Install"},"344":{"body":"The simplest usage example is available by using commands: register new job: snapshot-cli --endpoint https://snapshot.io job new --tag daily NOTE: response of the above call should return job-id which should be used in next call like below: b0b7b774-7263-4dce-a97d-c167169c8f27 check job id: snapshot-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Quick Start","id":"344","title":"Quick Start"},"345":{"body":"Full list of commands is available on snapshot-cli --help command. snapshot-trigger-service 0.1.0 USAGE: snapshot-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint snapshot endpoint [env: SNAPSHOT_ENDPOINT=] -t, --token access token, which is necessary to perform client operations [env: SNAPSHOT_TOKEN=] SUBCOMMANDS: files retrieve files from snapshot (snapshot outcome etc.) health check if snapshot service is up help Prints this message or the help of the given subcommand(s) job job related commands Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » full list of available commands","id":"345","title":"full list of available commands"},"346":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, result-dir: path to folder which artifacts will be dumped (qr-code etc.), voting-tools: voting tools internal parameters section, bin: “voting-tools”, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, db: dbsync name, db-user: dbsync user, db-host: dbsync host, scale: voting power multiplier. If 1 then Lovelace is used voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"result-dir\": \"/persist/snapshot\", \"voting-tools\": { \"bin\": \"voting-tools\", \"network\": \"mainnet\", \"db\": \"dbsync\", \"db-user\": \"dbsync-admin\", \"db-host\": \"/alloc\", \"scale\": 1000000 }, \"token\": \"3568b599a65557b2a2e\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Configuration » Configuration","id":"346","title":"Configuration"},"347":{"body":"Snapshot wormhole is a specialized Rest client API project. It has a builtin scheduler for transfering snapshot result file from snapshot-trigger-service to vit-servicing-station service.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » snapshot wormhole","id":"347","title":"snapshot wormhole"},"348":{"body":"In main project folder run: cd vit-testing/snapshot-wormhole\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » build","id":"348","title":"build"},"349":{"body":"","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run","id":"349","title":"run"},"35":{"body":"Stake can and need to be delegated to stake pool in the system. They can change over time with a publication of a new delegation certificate. Delegation certificate are a simple declaration statement in the form of: Account 'A' delegate to Stake Pool 'Z' Effectively it assigns the stake in the account and its associated UTXO stake to the pool it delegates to until another delegation certificate is made. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake Delegation","id":"35","title":"Stake Delegation"},"350":{"body":"The simplest run configuration is available by using command: snapshot-wormhole --config snapshot-wormhole.config one-shot which will perform a single job of snapshot-trigger-service -> vit-servicing-station See config for configuration file details.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » quick start","id":"350","title":"quick start"},"351":{"body":"Two modes are available: one-shot - ends program after single job is done, schedule - run job continuously based on cron string. one-shot This mode can be helpful for debugging or testing purposes to verify if our configuration is correct and services are available. schedule Start scheduler based on input cron string. We are using custom cron string which allows to program scheduler based on seconds. The scheduling format is as follows: | sec | min | hour | day of month | month | day of week | year |\n| * | * | * | * | * | * | * | For example, to schedule each run per 15 minutes starting from now: snapshot-wormhole --config wormhole-config.json schedule --cron \"* 4/60 * * * *\" --eagerly full list of available commands Full list of commands is available on snapshot-wormhole --help command","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run modes","id":"351","title":"run modes"},"352":{"body":"This section describe configuration file which can be passed as argument when starting snapshot-wormhole:","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » Configuration","id":"352","title":"Configuration"},"353":{"body":"This section describe snapshot trigger service connection: address: snapshot trigger REST api address, token: optional access token,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » snapshot service","id":"353","title":"snapshot service"},"354":{"body":"This section describe servicing station service connection: address: servicing station service REST api address,,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » servicing station service","id":"354","title":"servicing station service"},"355":{"body":"This section defines snapshot import parameters when applying snapshot to vit servicing station min_stake_threshold: minimum stake needed to participate in voting. Expressed in ada, voting_power_cap: maximum voting power before capping in order to satisfy fairness in voting. Expressed as a fraction number, direct_voters_group: group name for direct voters (determines part of REST path when accessing particular group with GET request), representatives_group: group name for representatives (determines part of REST path when accessing particular group with GET request) Example: { \"snapshot_service\": { \"address\": \"http://127.0.0.1:9090\", \"token\": \"RBj0weJerr87A\" }, \"servicing_station\": { \"address\": \"http://127.0.0.1:8080\" }, \"parameters\": { \"min_stake_threshold\": 500, \"voting_power_cap\": { \"Rational\": [\"Plus\",[1,2]] }, \"direct_voters_group\": \"direct\", \"representatives_group\": \"rep\" }\n}\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » parameters","id":"355","title":"parameters"},"356":{"body":"Valgrind is a Rest API project which is simplified proxy solution for catalyst backend.","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » valgrind","id":"356","title":"valgrind"},"357":{"body":"In main project folder run: cd valgrind\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » build","id":"357","title":"build"},"358":{"body":"The simplest configuration is available by using command: valgrind --block0_path block0.bin By default valgrind will be exposed at 127.0.0.1:8000","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » quick start","id":"358","title":"quick start"},"359":{"body":"Valgrind project provides also API for interacting with proxy server. Usage example: use valgrind::client::{ValgrindClient,ValgrindSettings}; let settings = RestSettings { enable_debug: false, use_https: false, certificate: None, cors: None, } let address = \"0.0.0.0:8080\".to_string(); let client = ValgrindClient::new(address, settings) let fragment_logs = client.fragment_logs()?;","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » client","id":"359","title":"client"},"36":{"body":"The rust node comes with tools and help in order to quickly start a node and connect to the blockchain. It is compatible with most platforms and it is pre-packaged for some of them. Here we will see how to install jormungandr and its helper jcli and how to connect quickly to a given blockchain. There are three posible ways you can start jormungandr.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Quickstart","id":"36","title":"Quickstart"},"360":{"body":"This section describe configuration file which can be passed as argument when starting valgrind: address: address on which valgrind will be exposed. By default: 127.0.0.1:8000, vit-address: vit servicing station address. By default: 127.0.0.1:3030, node-address: node address. By default: 127.0.0.1:8080, block0-path: path to block0 executable, cert: path to certificate (for enabling https). Optional, key: path certificate key (for enabling https). Optional, Example: \"address\": \"127.0.0.1:8000\", \"vit-address\": \"127.0.0.1:3030\", \"node-address\": \"127.0.0.1:8080\", \"block0-path\": \"./block0.bin\", \"cert\": \"certificate.cert\", \"key\": \"certificate.key\",\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » valgrind » Configuration » Configuration","id":"360","title":"Configuration"},"361":{"body":"Vitup is a cli project which is capable to bootstrap catalyst backend which can be exercised by various tools. Initial purpose is to provide simple localhost backend for catalyst voting app.","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » vitup","id":"361","title":"vitup"},"362":{"body":"before building vitup all dependencies need to be installed. valgrind jormungandr vit-servicing-station then in order to build vitup in main project folder run: cargo build and install: cargo install --path vitup","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » build","id":"362","title":"build"},"363":{"body":"The simplest configuration is available by using command: vitup start quick default endpoint will be exposed at 0.0.0.0:80 all data dumped to .\\catalyst","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » quick start","id":"363","title":"quick start"},"364":{"body":"Configuration file example is available under src/vit-testing/vitup/example/mock/config.yaml This section describe configuration file which can be passed as argument for vitup start mock command: pub struct Configuration { pub ideascale: bool, pub protocol: valgrind::Protocol,","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » Configuration","id":"364","title":"Configuration"},"365":{"body":"pub local: bool, } port: port on which registration-service will be exposed, token: token limiting access to environment. Must be provided in header API-Token for each request working-dir: path to folder which artifacts will be dumped (qr-code etc.), protocol: optional parameter if service shoudl be exposed through https. Then two sub-parameters need to be defined key_path and cert_path like in an example below: \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" } NOTE: certificates in resources folder are self-signed Example: { \"port\": 8080, \"working-dir\": \"./mock\", \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » [serde(default)]","id":"365","title":"[serde(default)]"},"366":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation » Data Generation","id":"366","title":"Data Generation"},"367":{"body":"This section describe configuration file. It is passed as argument when starting vitup. It can also, in some cases, send to already running environments in order to restart them with new settings.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"367","title":"Configuration"},"368":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Initials","id":"368","title":"Initials"},"369":{"body":"Allows to provide initial voters and representatives which whose will be available in initial snapshot. see snapshot data creation guide for more details","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"369","title":"snapshot"},"37":{"body":"As described here . The passive Node is the most common type of Node on the network. It can be used to download the blocks and broadcast transactions to peers. However, it doesn’t have cryptographic materials or any mean to create blocks. This type of nodes are mostly used for wallets, explorers or relays.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a passive node in an existing network","id":"37","title":"As a passive node in an existing network"},"370":{"body":"Allows to provide initial addresses/voters which addresses would be put in block0. Supported syntax: above threshold Amount of wallets which receive more than value defined in static_data.voting_power parameter Example: { \"above_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses below threshold Amount of wallets which receive less than value defined in static_data.voting_power parameter Example: { \"below_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses around level Amount of wallets which have funds around defined level Example: { \"count\":30, \"level\":1000, \"pin\":\"1234\"\n} zero funds Amount of wallets which won’t have any funds in block0 Example: { \"zero_funds\":30, \"pin\":\"1234\"\n} named wallet Wallet with custom pin and arbitrary funds amount, Example: { \"name\":\"darek\", \"funds\":8000, \"pin\":\"1111\" }, external wallet Wallet with address and pin. For users who already generated address outside vitup. Example: { \"address\":\"ca1qknqa67aflzndy0rvkmxhd3gvccme5637qch53kfh0slzkfgv5nwyq4hxu4\", \"funds\":8000 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » block0","id":"370","title":"block0"},"371":{"body":"Allows to provide initial addresses/voters which addresses would be put in initial snapshot. Supported syntax: random Some number of random wallets which receive specified amount of voting power Example: { \"count\": 2, \"level\": 5000 }, external A single entry with specified voting key and voting power Example: { \"key\":\"3877098d14e80c62c071a1d82e3df0eb9a6cd339a5f66e9ec338274fdcd9d0f4\", \"funds\":300 } named A single entry with specified alias from block0 and optional voting power. If voting power is not defined it would be taken from block0 section. If vitup cannot find alias it will produce an error Example: { \"name\": \"darek\", \"funds\": 100 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"371","title":"snapshot"},"372":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote plan","id":"372","title":"vote plan"},"373":{"body":"Below parameters describe how long vote would be active, for how long users can vote and when tally period would begin. In cardano time is divided into epochs which consists of slots. There are 2 parameters that defines how long epoch should last, slot_duration and slots_per_epoch with equation: epoch_duration = slot_duration * slots_per_epoch. For example, for given: slot_duration = 2\nslots_per_epoch = 10 then epoch will lasts 20 seconds. vote_start, vote_tally, tally_end - describe 2 vote phases: from vote_start to vote_tally : casting vote period, where we gather votes. from vote_tally to tally_end: tallying vote period, where we gather voting results. Sll above parameters are expressed in epochs. Be aware that slot_duration and slots_per_epoch have influence on time voting phase would start. For example: start vote in 5 minutes, allow users to case vote for 20 minutes give 1 hour for tally operation our setup would be like below: \"vote_start\":1,\n\"vote_tally\":4,\n\"tally_end\":20,\n\"slots_per_epoch\":60, See jormungandr docs for more information. NOTE: slot_duration is defined in blockchain section of configuration file private If true, then voting is private otherwise public. This parameters basically controls if votes choices are encrypted or not. representatives_vote_plan TBD, currently not used","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote time","id":"373","title":"vote time"},"374":{"body":"\"vote_plan\": { \"vote_time\": { \"vote_start\": 13, \"tally_start\": 98, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true, \"representatives_vote_plan\": false }, }, blockchain Set of parameters which controls blockchain related configuration. See jormungandr docs for more information. slot_duration Describes how frequent block are produces by network. Slot duration is expressed in seconds. Cannot be longer that 128. block_content_max_size Describes how big a single block can be. Larger blocks can hold more transactions which results in faster transactions processing. However it put more requirements on space and network throughput. block0_time Optional parameter which defines start time of block0. It is useful when one want to defined voting phases that ends and starts precisely in required time. Otherwise block0_time is equal to current time when running vitup tx_max_expiry_epochs Optional parameter which defines what is the maximum duration (expressed in epochs) of transaction timeout. Usually it is equal to 1. consensus_leader_ids Allows to override randomly generated consensus leaders ids. Useful when we have our own pre-generated leaders keys for nodes. linear_fees Transactions fees which defined cost of transaction or vote. constant - constant fee added to each transaction coefficient - coefficient of each transaction output certificate - cost of sending certificate. constant + transaction.output * coefficient + certificate Example: \"linear_fees\": { \"constant\": 1, \"coefficient\": 1, \"certificate\": 2 }, Above configuration will result in: For transaction with 1 input and 1 output 1 + 1 * 1 + 0 = 2 For vote 1 + 0 * 1 + 2 = 3 committees Committee is a wallet that is capable of tallying voting results. This setting allows to use predefined committee rather than generate random by vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » example","id":"374","title":"example"},"375":{"body":"Section describes static data used for voting. Mostly defines parameters for servicing station","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » data","id":"375","title":"data"},"376":{"body":"Current fund related settings: options Defines options available for voters. Should be expressed as coma-separated values. For example: options: \"yes,no\" proposals Number of proposals available for voting challenges Number of challenges available for voting. Challenge is a container for proposals for the same domain reviews Number of reviews for proposals voting_power Threshold for voting participation, expressed in ADA fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime. This data will be shown to users after current voting will ends.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » current fund","id":"376","title":"current fund"},"377":{"body":"Limited subset of settings comparing to current_fund section for next funds fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » next funds","id":"377","title":"next funds"},"378":{"body":"Service related settings NOTE: this section is ignored when only generating data using vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » service","id":"378","title":"service"},"379":{"body":"Control version of backend. Manipulating this parameter we can tell voting app to force user to self-update application.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » version","id":"379","title":"version"},"38":{"body":"The network could be running either bft or genesis consensus. In the former case the node must have the private key of a registered as a slot leader. For the latter the private keys of a registered stake pool are needed. More information here","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a node generating blocks in an existing network","id":"38","title":"As a node generating blocks in an existing network"},"380":{"body":"Controls protocol over which vitup is available for client","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » https","id":"380","title":"https"},"381":{"body":"{ \"initials\":{ \"snapshot\":{ \"tag\":\"daily\", \"content\":[ { \"count\":2, \"level\":1234 }, { \"name\":\"alice\" }, { \"name\":\"bob\", \"funds\":10001 } ] }, \"block0\":[ { \"above_threshold\":10, \"pin\":\"1234\" }, { \"name\":\"alice\", \"pin\":\"1234\", \"funds\":10000 }, { \"name\":\"bob\", \"pin\":\"1234\", \"funds\":10000 }, { \"zero_funds\":10, \"pin\":\"1234\" } ] }, \"vote_plan\":{ \"vote_time\":{ \"vote_start\":0, \"tally_start\":134, \"tally_end\":234, \"slots_per_epoch\":3600 }, \"private\":true }, \"blockchain\":{ \"slot_duration\":4, \"block_content_max_size\":20971520, \"linear_fees\":{ \"constant\":0, \"coefficient\":0, \"certificate\":0 } }, \"data\":{ \"current_fund\":{ \"options\":\"yes,no\", \"proposals\":1134, \"challenges\":23, \"reviews\":7045, \"voting_power\":450, \"fund_name\":\"Fund9\", \"fund_id\":9, \"dates\":{ \"insight_sharing_start\":\"2022-05-01T12:00:00Z\", \"proposal_submission_start\":\"2022-05-02T12:00:00Z\", \"refine_proposals_start\":\"2022-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2022-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2022-05-04T12:00:00Z\", \"assessment_qa_start\":\"2022-05-05T12:00:00Z\", \"snapshot_time\":\"2022-05-07T12:00:00Z\", \"next_snapshot_time\":\"2023-05-07T12:00:00Z\", \"next_vote_start_time\":\"2022-07-14T12:00:00Z\" } }, \"next_funds\":[ { \"fund_name\":\"Fund10\", \"fund_id\":10, \"dates\":{ \"insight_sharing_start\":\"2023-05-01T12:00:00Z\", \"proposal_submission_start\":\"2023-05-02T12:00:00Z\", \"refine_proposals_start\":\"2023-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2023-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2023-05-04T12:00:00Z\", \"assessment_qa_start\":\"2023-05-05T12:00:00Z\", \"snapshot_time\":\"2023-05-07T12:00:00Z\", \"voting_start\":\"2023-07-14T12:00:00Z\", \"voting_tally_end\":\"2023-07-14T12:00:00Z\", \"voting_tally_start\":\"2023-07-14T12:00:00Z\", \"next_snapshot_time\":\"2023-07-07T12:00:00Z\", \"next_vote_start_time\":\"2023-07-14T12:00:00Z\" } } ] }, \"version\":\"3.8\"\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Full Example","id":"381","title":"Full Example"},"382":{"body":"This section describe configuration section which can be passed as argument when starting vitup or send to already running environments in order to restart them through rest api.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"382","title":"Configuration"},"383":{"body":"{ \"parameters\": { \"tag\": \"latest\" }, \"content\": [ { \"rep_name\": \"alice\", \"ada\": 1000 }, { \"rep_name\": \"clarice\", \"ada\": 1000 }, { \"name\": \"bob\", \"registration\": { \"target\": [ [\"alice\",1] ], \"slotno\": 0 }, \"ada\": 1000 }, { \"name\": \"david\", \"registration\": { \"target\": [ [\"clarice\",1] ], \"slotno\": 0 }, \"ada\": 1000 } ] Below more detailed explanation for each section element","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Example","id":"383","title":"Example"},"384":{"body":"Snapshot parameters used when importing it to servicing station or mock. tag - snapshot tag which will be used when importing snapshot min_stake_threshold - Minimum lovelace which is required to participate in voting voting_power_cap - Maximum percentage of voting power before capping direct_voters_group - Name of direct registration holders representatives_group - Name of delegated registrations holders (representatives)","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » parameters","id":"384","title":"parameters"},"385":{"body":"Main content of snapshot","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » content","id":"385","title":"content"},"386":{"body":"For user convenience we allow untagged definition of actor. Actor can be representative or direct voter with some data. Depending on fields role is dynamically defined and user can focus only on scenario description pre-generated representative This variant will create new unique wallet with given ada amount rep_name - alias ada - voting power amount external representative Representative with just and voting key. Can be used for already existing wallet rep_name - alias voting_key - voting key in hex external delegator Delegator with just an address. Can be used for already existing wallet in the network name - alias address - address in hex pre-generated delegator Delegator with just an address. Can be used for already existing wallet in the network. Generated delegator will set up new mainnet wallet name - alias registration: registration definition which can be used to describe to which representative delegator delegates his voting power. Field need to define slot at which delegation occurs and distribution. Example: ... \"registration\": { \"target\": [ [ \"clarice\",1 ] ,[ \"alice\",2 ] ], \"slotno\": 0 }\n... Above example divides voting power into 3 parts and assign 1/3 to clarice and 2/3 to alice ada - ada amount Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » actor","id":"386","title":"actor"},"387":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation","id":"387","title":"Data Generation"},"388":{"body":"For developer convenience an in-memory backend is available. Idea is the same as above but env is more lightweight and does not spawn jormungandr or vit-servicing-station. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Mock","id":"388","title":"Mock"},"389":{"body":"Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Configuration","id":"389","title":"Configuration"},"39":{"body":"This is similar to the previous case, but configuring a genesis file is needed. Consult the Advanced section for more information on this procedure.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Creating your own network","id":"39","title":"Creating your own network"},"390":{"body":"vitup start mock --config example\\mock\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Start","id":"390","title":"Start"},"391":{"body":"For postman collection please visit: Requests collection List Files curl --location --request GET 'http://{mock_address}/api/control/files/list' Get File curl --location --request GET 'http://{mock_address}/api/control/files/get/{path_to_file}' Health curl --location --request GET 'http://{mock_address}/api/health' Change Fund Id curl --location --request POST 'http://{mock_address}/api/control/command/fund/id/{new_fund_id}' Add new fund curl --location --request PUT 'http://{mock_address}/api/control/command/fund/update' \\\n--header 'Content-Type: application/json' \\\n--data-raw '\n{ \"id\": 20, \"fund_name\": \"fund_3\", \"fund_goal\": \"How will we encourage developers and entrepreneurs to build Dapps and businesses on top of Cardano in the next 6 months?\", \"voting_power_threshold\": 8000000000, \"fund_start_time\": \"2022-05-04T10:50:41Z\", \"fund_end_time\": \"2022-05-04T11:00:41Z\", \"next_fund_start_time\": \"2022-06-03T10:40:41Z\", \"registration_snapshot_time\": \"2022-05-04T07:40:41Z\", \"next_registration_snapshot_time\": \"2022-06-02T10:40:41Z\", \"chain_vote_plans\": [ { \"id\": 2136640212, \"chain_voteplan_id\": \"ad6eaebafd2cca7e1829df26c57b340a98b9d513b7eddec8561883f1b99f3b9e\", \"chain_vote_start_time\": \"2022-05-04T10:50:41Z\", \"chain_vote_end_time\": \"2022-05-04T11:00:41Z\", \"chain_committee_end_time\": \"2022-05-04T11:10:41Z\", \"chain_voteplan_payload\": \"public\", \"chain_vote_encryption_key\": \"\", \"fund_id\": 20 } ], \"challenges\": [ { \"id\": 1, \"challenge_type\": \"community-choice\", \"title\": \"Universal even-keeled installation\", \"description\": \"Upgradable\", \"rewards_total\": 7686, \"proposers_rewards\": 844, \"fund_id\": 20, \"challenge_url\": \"http://schneider-group.info\", \"highlights\": { \"sponsor\": \"Kreiger and Wuckert and Sons\" } } ]\n} ' Accept all Fragments Makes mock to accept all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/accept' Reject all Fragments Makes mock to reject all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reject' Hold all Fragments Makes mock to hold all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/pending' Reset Fragment strategy Makes mock to validate all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reset' Make backend unavailable Mock will reject all connections (returns 500) curl --location --request POST 'http://{mock_address}/api/control/command/available/false' Make backend available Mock will accept all connections curl --location --request POST 'http://{mock_address}/api/control/command/available/true' Make account endpoint unavailable Mock will reject n calls to account endpoint and as a result voting app won’t receive voting power for some time. This endpoint assume that one who changes block-account endpoint knows what is the frequency of calls from client and ultimately can be translated to some time of unavailability. curl --location --request POST 'http://{mock_address}/api/control/command/block-account/{number_of_calls_to_reject}' Make account endpoint available Mock will reset account endpoint unavailability curl --location --request POST 'http://{mock_address}/api/control/command/block-account/reset' Add new voters snapshot for specific tag Add (or overwrite) voters snapshot for this particular tag curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/add/{tag}' \\\n--header 'Content-Type: application/json' \\\n--data-raw ' [{\"voting_group\":\"direct\",\"voting_key\":\"241799302733178aca5c0beaa7a43d054cafa36ca5f929edd46313d49e6a0fd5\",\"voting_power\":10131166116863755484},{\"voting_group\":\"dreps\",\"voting_key\":\"0e3fe9b3e4098759df6f7b44bd9b962a53e4b7b821d50bb72cbcdf1ff7f669f8\",\"voting_power\":9327154517439309883}]' Create new voters snapshot for specific tag Create snapshot json which can be uploaded to mock by using ../snapshot/add command. See mock configuration for more details. Example: curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/create' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"tag\": \"daily\", \"content\": [ { \"count\": 2, \"level\": 5000 }, { \"name\": \"darek\", \"funds\": 100 }, { \"key\":\"318947a91d109da7109feaf4625c0cc4e83fe1636ed19408e43a1dabed4090a3\", \"funds\":300 }\n]\n}' Reset environment Resets environment data curl --location --request POST 'http://{mock_address}/api/control/command/reset' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"initials\": { \"block0\": [ { \"above_threshold\": 10, \"pin\": \"1234\" }, { \"name\": \"darek\", \"pin\": \"1234\", \"funds\": 10000 } ] }, \"vote_plan\": { \"vote_time\": { \"vote_start\": 0, \"tally_start\": 100, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true }, \"blockchain\": { \"slot_duration\": 2, \"block_content_max_size\": 20971520, \"block0_time\": \"2022-03-17T05:00:00Z\", \"linear_fees\": { \"constant\": 0, \"coefficient\": 0, \"certificate\": 0 } }, \"data\": { \"options\": \"yes,no\", \"snapshot_time\": \"2022-01-06T11:00:00Z\", \"next_snapshot_time\": \"2022-04-07T11:00:00Z\", \"next_vote_start_time\": \"2022-04-11T11:00:00Z\", \"proposals\": 936, \"challenges\": 25, \"reviews\": 5190, \"voting_power\": 450, \"fund_name\": \"Fund7\", \"fund_id\": 6 }, \"version\":\"3.6\"\n}' see data generation guide for more details Control Health Checks if mock is up curl --location --request POST 'http://{mock_address}/api/control/health' Logs Mock stores record of each request send to it. This endpoint gets all logs from mock curl --location --request POST 'http://{mock_address}/api/control/logs/get'","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin rest commands","id":"391","title":"Admin rest commands"},"392":{"body":"Admin CLI is an alternative for all above calls, available under vitup project. example: vitup-cli --endpoint {mock} disruption control health Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin cli","id":"392","title":"Admin cli"},"393":{"body":"Mock farm is a simple extension for mock service. It allows to run more that one mock at once and give more control to user in term of starting and stopping particular mock instance.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Mock Farm","id":"393","title":"Mock Farm"},"394":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, working_directory: path to folder which config files will be dumped, mocks-port-range: range of ports assigned for usage, protocol: decide whether mock farm should be exposed as http or https, local: should service be exposed on all network interfaces or only 127.0.0.1, token: token limiting access to environment. Must be provided in header API-Token for each request Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock-farm/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Configuration","id":"394","title":"Configuration"},"395":{"body":"vitup start mock-farm --config example\\mock\\mock-farm\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Start","id":"395","title":"Start"},"396":{"body":"OpenApi Requests collection Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Documentation","id":"396","title":"Documentation"},"397":{"body":"In order to take out the burden of providing entire configuration vitup has two configuration modes: quick - which runs on defaults and allow user to override most important parameters using cli arguments: vitup start quick advanced - which allows to defined full configuration as well as external static files for proposals and challenges vitup start advanced","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Configuration modes","id":"397","title":"Configuration modes"},"398":{"body":"There are 4 run modes available in vitup: interactive - where user can push some fragments or query status of nodes endless - [Default] just simple run until stopped by user service - additional manager service will be published at 0.0.0.0:3030. They allow to control (stop/start) and provides resources over http (qr codes or secret keys) mock - lightweight version of backend with does not spawn any jormungandr or vit-servicing-station services. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Run Modes","id":"398","title":"Run Modes"},"399":{"body":"There are two ways of starting vitup in endless mode. One with limited configuration and one with giving full control. vitup start quick --mode endless .. or vitup start advanced --mode endless ..","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Endless mode","id":"399","title":"Endless mode"},"4":{"body":"Jörmungandr refers to the Midgard Serpent in Norse mythology. It is a hint to Ouroboros , the Ancient Egyptian serpent, who eat its own tail, as well as the IOHK paper on proof of stake.","breadcrumbs":"Core Ledger » Core Ledger » Mythology","id":"4","title":"Mythology"},"40":{"body":"The software is bundled with 2 different command line software: jormungandr : the node; jcli : Jörmungandr Command Line Interface, the helpers and primitives to run and interact with the node.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Command line tools","id":"40","title":"Command line tools"},"400":{"body":"vitup start quick --mode service .. or vitup start advanced --mode service .. Once environment is up one can check status or modify existing environment:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Service mode","id":"400","title":"Service mode"},"401":{"body":"start - in order to start new voting stop - stops currently running vote backend (usually it takes 1 min to stop it) status - check status of environment: Idle - environment is not started Starting - environment is starting, please wait until its status is Running, Running - environment is not running and should be accessible, Stopping - environment is stopping, please wait until its Idle to start it with different parameters, files: In order to get qr-codes or secret files from env, two operations are provided: List Files - list all files in data directory for current run Get File - downloads particular file which is visible in List Files operation result","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Admin Operations","id":"401","title":"Admin Operations"},"402":{"body":"Voting backend admin console is an REST API accessible over http or https on port 3030. Using POST/GET http methods admin can send some operations to environment. There are various apps capable of sending REST commands. The simplest is to download Postman and use UI to fire up commands. Download postman: https://www.postman.com/downloads/ Review quick guide, how to send dummy request: https://learning.postman.com/docs/getting-started/sending-the-first-request/ Review guide, how to send different requests with arguments: https://learning.postman.com/docs/sending-requests/requests/ Available commands:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » how to send operations","id":"402","title":"how to send operations"},"403":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/command/status Response Example: Running","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » check environment status","id":"403","title":"check environment status"},"404":{"body":"Default parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start Response Example: start event received Custom parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start/default BODY: json with configuration Response Example: start event received This requests need to pass environment configuration file in Body. stop environment Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/stop Response Example: stop event received","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » start environment","id":"404","title":"start environment"},"405":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/files/list Response Example: { \"content\": { \"network\": [ \"Leader4/node.log\", \"Leader4/node_config.yaml\", \"Leader4/node_secret.yaml\", \"vit_station/vit_config.yaml\", \"initial_setup.dot\", \"Leader1/node.log\", \"Leader1/node_config.yaml\", \"Leader1/node_secret.yaml\", \"Leader3/node.log\", \"Leader3/node_config.yaml\", \"Leader3/node_secret.yaml\", \"Leader2/node.log\", \"Leader2/node_config.yaml\", \"Leader2/node_secret.yaml\", \"Wallet_Node/node.log\", \"Wallet_Node/node_config.yaml\", \"Wallet_Node/node_secret.yaml\" ], \"qr-codes\": [ \"qr-codes/zero_funds_12_0000.png\", \"qr-codes/wallet_25_above_8000_1234.png\", \"qr-codes/wallet_12_below_8000_9807.png\", \"qr-codes/wallet_30_below_8000_9807.png\" ], \"private_keys\": [ \"wallet_13_below_8000\", \"wallet_26_below_8000\", \"wallet_23_above_8000\", \"wallet_26_above_8000\" ], \"private_data\": [ \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/communication_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/encrypting_vote_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/member_secret_key.sk\" ], \"blockchain\": [ \"block0.bin\", \"genesis.yaml\" ] }, \"root\": \"./vit_backend\", \"blockchain_items\": [ \"block0.bin\", \"genesis.yaml\" ]\n}","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » list files","id":"405","title":"list files"},"406":{"body":"User can list or view files available for current voting. To list all available files /api/control/files/list endpoint can be utilized. Then relative path can be provided in /api/control/files/get/.. endpoint. For example: http://{env_endpoint}:3030/api/control/files/get/qr-codes/zero_funds_12_0000.png Request Type: GET Endpoint : http://{env_endpoint}:3030/files/get/{file_path }","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » get files","id":"406","title":"get files"},"407":{"body":"TBD Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Interactive mode","id":"407","title":"Interactive mode"},"408":{"body":"","breadcrumbs":"Core VIT Servicing Station » Core VIT Servicing Station » Core VIT Servicing Station","id":"408","title":"Core VIT Servicing Station"},"409":{"body":"Vit servicing station tests project is a container project vit-servicing-station tests. Tests are validating server correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » vit-servicing-station-tests","id":"409","title":"vit-servicing-station-tests"},"41":{"body":"","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Installation","id":"41","title":"Installation"},"410":{"body":"","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Quick start","id":"410","title":"Quick start"},"411":{"body":"In order to run test vit-servicing-station-server need to be installed or prebuilt.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Prerequisites","id":"411","title":"Prerequisites"},"412":{"body":"In order to build vit-servicing-station in main project folder run: cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Start tests","id":"412","title":"Start tests"},"413":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.)","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Tests categories","id":"413","title":"Tests categories"},"414":{"body":"cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run all functional tests","id":"414","title":"How to run all functional tests"},"415":{"body":"cd vit-servicing-station-tests\ncargo test --features non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run performance tests","id":"415","title":"How to run performance tests"},"416":{"body":"cd vit-servicing-station-tests\ncargo test --features soak,non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run endurance tests","id":"416","title":"How to run endurance tests"},"417":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Frequency","id":"417","title":"Frequency"},"418":{"body":"","breadcrumbs":"Unified Platform » Unified Platform » Unified Platform","id":"418","title":"Unified Platform"},"419":{"body":"The Catalyst-Cardano bridge is a custom bridge interface between Catalyst and a Cardano Node. It tracks data relevant to the unified Catalyst system, as it appears on the Cardano network, in real-time. The bridge is not just a data logger, it also: Acts as an event trigger for other Catalyst systems. Acts as an information server to data pertinent to Catalyst operations.","breadcrumbs":"Unified Platform » Overview » Overview » Overview","id":"419","title":"Overview"},"42":{"body":"This is the recommended method. Releases are all available here .","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From a release","id":"42","title":"From a release"},"420":{"body":"Catalyst has used a tool called dbsync to aquire “snapshot” data. A “snapshot” is a record at a moment in time of all staked ADA in the network. dbsync is a tool which captures a relational interpretation of the Cardano blockchain to an SQL database. This is useful for general-purpose queries of information contained on Cardano, but to query bulk data it is slow, and complex. The relational structure means that individual transactions need to be pieced together from multiple tables. Even with indexes this exerts a heavy efficiency toll when a single transactions state is queried. When bulk data is queried, it results in a large and complex query which takes a very long time to run (on the order of hours). dbsync itself takes a very very long time to sync to the blockchain, and get progressively slower. As at mid january 2023, one dbsync instance in a production environment took more than 5 days to sync with a local node. It is supposed to be possible to recover dbsync database from a backup, however experience shows this is a time consuming process itself. It took more than 12 hours just to load the backup image into the database, but then the node would not sync with main net. These issues cause excessive complexity, slow operation and fragile environments. Project Catalyst is also not in control of the dbsync database schema, and the schema can change between revisions. This could mean the entire database needs to be re-synched (taking days), or the schema changes and breaks tools which rely on the schema.","breadcrumbs":"Unified Platform » Overview » Overview » Issues with the previous systems","id":"420","title":"Issues with the previous systems"},"421":{"body":"The solution detailed here is a new bridge service, that has the following features: Can sync from multiple redundant nodes. Does not need to trust any single node (so it can sync from public nodes). Focused on data and events required by Project Catalyst: Registration Records at all points in the past. Staked ADA at all points in the past. Minimum necessary state to track staked ADA. More efficient database schema. Schema is not accessed directly but via a simple API Service. Prevents downstream consumers from breaking if the DB Schema needs to change. Does not need to snapshot: Data is accumulated progressively, not at instants in time. Data storage allows the state at any past time to be calculated simply and efficiently. Is easy to independently deploy by the Catalyst Community, so they can independently validate data reported by Project Catalyst. Distributed use does not rely on any Catalyst-supplied data, which improves audibility and trust.","breadcrumbs":"Unified Platform » Overview » Overview » The solution","id":"421","title":"The solution"},"422":{"body":"The System has these components: 1 or more Cardano Nodes (Preferably 2 or more) A Pipeline which processes the data from the nodes: Read blocks from multiple nodes Validate blocks by independent reference (A valid block has n independent copies) Queue valid blocks for processing. Read valid blocks from the queue and process every transaction in the block. Calculate the change in staked ADA caused by all transactions in the block. Validate all Registration Records in the block: Record all validated registrations. Record all in-valid registrations (including the reason the registration is invalid). Queue the complete block of transactions, ledger state and registration updates for storing and alerting. Lock the Databases for writing (Transactional) Check if the block being recorded is new: New: Record the updated current ledger state. Record the staked ADA for every stake address which changed in this block (time series record) Record the registrations (time series record) Send alerts to all upstream subscribers that subscribed events have changed. Commit the transaction (unlocks the DB) Already Recorded: Abort the write transaction (release the DB) Read the recorded data from the DB Validate the DB data with the data calculated from the block. If there is any discrepancy, LOG errors and send configured alerts. A REST/HTTP service to report catalyst bridge data Report current staked/unpaid rewards in ADA for any stake address. Report staked/unpaid rewards in ADA for any stake address, at any past time. Report staked/unpaid rewards over a period of previous time, with various processing: Daily Averages All records other Calculate voting power given a set of voting power options for a single address, or all registrations of a particular type. Snapshot (instantaneous) voting power Time window based voting power calculation Linear vs functional voting power function of raw ADA. Capped at a particular % other parameters which can affect the voting power calculation. Catalyst Event stream published via: Kafka other","breadcrumbs":"Unified Platform » Overview » Overview » Architecture Overview","id":"422","title":"Architecture Overview"},"423":{"body":"ContractKeycontract_key: byteshash(concat(contract_hash, parameter_hash))ContractHashcontract_hash : byteshash(Contract.as_bytes())ParameterHashparameter_hashhash(Paramters.as_bytes())ContractCompiled Wasmas_bytes()ParametersStructured Parameter Dataas_bytes() hunger noticedchoose recipedesired dish?","breadcrumbs":"Unified Platform » Overview » Overview » Architectural Diagram","id":"423","title":"Architectural Diagram"},"424":{"body":"The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. However, it is also a useful and capable tool in its own right. It has a secondary use case of allowing the community to INDEPENDENTLY validate their registrations and voting power. Accordingly, it is developed as a stand-alone service. This means it can be easily distributed and deployed INDEPENDENTLY of the rest of the catalyst unified backend services. It has two internal long running tasks. Read, validate and record latest registrations/delegations from the linked block chain. Read and record running total balance and unclaimed rewards for every stake address. It also exposes a Voting Power API. Get voting power for Stake Address or Voting Key as at (timestamp). Would respect the registrations valid at that time. So if you asked for your voting power but you were delegated, the API would return you have X personal voting power, and Y..Z Voting power of yours has been delegated to Keys A-B. Options: Max Registration Age (So regitrations before this date/time are not considered). Must have valid payment address. (So we can later make a valid payment address a necessity if required, and this would also exclude just using stake address.) Voting power calculation type Absolute on the time of snapshot Average Maximum daily value Parameter: Length of time to average over (in days). Voting power linearity Linear (1 ADA = X voting power). Where X is a parameter. Logarithmic (Voting power is attenuated by a logarithmic function). Would need parameters to define the curve. Other?? Get Registration/Delegation information for a Stake Address/Voting Key as at a time. Similar to above but does NOT do any Get all active registrations as at a time. Time and max age of registrations are parameters. If stake addresses without registration are included in the output. What do you think? (edited)","breadcrumbs":"Unified Platform » Overview » Overview » Integration to the Catalyst Unified Backend","id":"424","title":"Integration to the Catalyst Unified Backend"},"425":{"body":"The bridge will need at least 1, and preferably more Cardano Nodes to read blocks from. The Bridge will employ a local consensus model, in place of the absolute trust of a single node. Part of the configuration of the bridge will need to be: the addresses of the available nodes that may be requested for new blocks. the number of nodes which must send concurring blocks before a block is accepted. the number of blocks to retrieve in advance of the current head. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Cardano Nodes » Cardano Nodes","id":"425","title":"Cardano Nodes"},"426":{"body":"","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Bridge Pipeline » Bridge Pipeline","id":"426","title":"Bridge Pipeline"},"427":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Block Reader » Block Reader","id":"427","title":"Block Reader"},"428":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » REST HTTP Service » REST HTTP Service","id":"428","title":"REST HTTP Service"},"429":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Event Stream » Event Stream","id":"429","title":"Event Stream"},"43":{"body":"Jörmungandr’s code source is available on github . Follow the instructions to build the software from sources.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From source","id":"43","title":"From source"},"430":{"body":"The database is private to the catalyst-cardano bridge. Access to it is through the Catalyst-Cardano bridge service. The schema for this database will be managed by the service and is expected to evolve. The concrete schema will be defined as the service is developed, and responsive to the needs of the service. Rather than defining an abstract “ideal” schema in advance, and then being tied to an inefficient implementation.","breadcrumbs":"Unified Platform » Overview » Database » Database » Database","id":"430","title":"Database"},"431":{"body":"Initially, the service will target and store data in Postgresql . However, it should be written in such a way that we can easily replace Postgresql with another DB, such as SurrealDB . To achieve this, database interactions should be contained to a crate which abstracts these interactions. For speed, the service should ALSO attempt to cache as much state internally as it can. However it must be kept in mind that multiple services can and will update the backing database. Accordingly, the internal state should be checked and refreshed/updated as required.","breadcrumbs":"Unified Platform » Overview » Database » Database » Servers","id":"431","title":"Servers"},"432":{"body":"There will initially be three logical databases, though they will NOT be in separate schemas and queries can join information between them. Registration Database Staked ADA Database Transaction State Database","breadcrumbs":"Unified Platform » Overview » Database » Database » High-Level Data Design","id":"432","title":"High-Level Data Design"},"433":{"body":"There will be a Registration Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Registrations Database","id":"433","title":"Registrations Database"},"434":{"body":"The data needed to be stored in each registration record is: The time and date the registration was made. Derived from the block date/time on Cardano, NOT the time it was detected. The location of the transaction on the blockchain. Allows the transaction to be verified against the blockchain. The raw contents of the transaction. The full raw transaction in binary. Allows information not directly pertinent to Catalyst to be retained. The Type of registration. CIP-15 CIP-36 Others Currently, there are only CIP-15 and CIP-36 voter registrations, however, there WILL be others. Invalidity Report Is the registration transaction Valid according to Catalyst transaction validity rules? true - Then this field is NULL. false - then this field contains a JSON formatted report detailing WHY it was invalid. Registration specific fields Fields which represent the meta-data of the registration itself. These fields need to be able to be efficiently searched.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Data","id":"434","title":"Data"},"435":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Queries","id":"435","title":"Queries"},"436":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. Return the MOST current registration.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Current Voter Registration","id":"436","title":"Current Voter Registration"},"437":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. For each unique stake address: Return the MOST current registration. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » All Current Voter Registrations","id":"437","title":"All Current Voter Registrations"},"438":{"body":"There will be a Staked ADA Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked ADA Database","id":"438","title":"Staked ADA Database"},"439":{"body":"The data needed to be stored in each staked ADA record is: The Stake address. The time and date the ADA staked/rewarded changed. Derived from the block date/time on Cardano, NOT the time it was detected. IF the staked ADA changed MULTIPLE times in the same block: this record contains the total at the END of all updates. The block on the blockchain when this stake address total changed. Allows the transaction/s to be verified against the blockchain. The total staked ADA as at this Block. The total unpaid-rewards ADA as at this Block. Rewards are earned for stake addresses at the end of epochs. They are specially accounted for and need to be withdrawn. This total is the total of all ADA which has been awarded to the stake address but NOT yet withdrawn. Note: ONLY stake addresses which CHANGE are recorded. It’s possible (probable?) that ONLY one of the total staked ADA or total unpaid rewards ADA will update at a time in a single block. However, regardless of which total updates, the record must faithfully record the total current at that time for both. For example: Staked ADA starts at 1234 and Unpaid Rewards ADA starts at 95. At 12:43 Staked ADA changes to 1200 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 95. At 14:55 Unpaid Rewards changes to 143 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 143.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Data","id":"439","title":"Data"},"44":{"body":"All commands come with usage help with the option --help or -h. For jcli, it is possible to generate the auto completion with: jcli auto-completion bash ${HOME}/.bash_completion.d Supported shells are: bash fish zsh powershell elvish Note: Make sure ${HOME}/.bash_completion.d directory previously exists on your HD. In order to use auto completion you still need to: source ${HOME}/.bash_completion.d/jcli.bash You can also put it in your ${HOME}/.bashrc. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Help and auto completion","id":"44","title":"Help and auto completion"},"440":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Queries","id":"440","title":"Queries"},"441":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Current Staked ADA","id":"441","title":"Current Staked ADA"},"442":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). For each unique stake address: Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » All Current Staked ADA","id":"442","title":"All Current Staked ADA"},"443":{"body":"AsAt - The time the registration must be valid by. Age - The Oldest record to return. For the period requested return a list of all staked balances where each record in the list is: date-time - The time this balance applies to. slot - The slot on the Cardano blockchain the balance changed in. staked - The total Staked at this time. rewarded - The total Unclaimed rewards at this time. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked Balances for a period","id":"443","title":"Staked Balances for a period"},"444":{"body":"This is NOT a time-series database, it tracks: the current state of the sync from the block chain all current UTXO’s any other data it needs to calculate staked-ADA changes as blocks arrive. It is updated to track current state and is not historical. This state is updated atomically, along with: The staked ADA database The registration database This ensures that the DB is always in-sync with discrete minted blocks on the block-chain. The DB NEVER store a partial block update. Data There is no firm specification of the data that needs to be stored. It should be adapted to efficiently and quickly allow for the functions of the process to execute. The ONLY critical information that it contains is the current block last synced. All other information and the structure of it will need to be decided during implementation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Transaction State Database » Transaction State Database","id":"444","title":"Transaction State Database"},"445":{"body":"","breadcrumbs":"Rust API » Rust API » Rust API","id":"445","title":"Rust API"},"446":{"body":"","breadcrumbs":"Rust API » Rust API Documentation and Packages » Rust API Documentation and Packages","id":"446","title":"Rust API Documentation and Packages"},"447":{"body":"blockchain chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser","breadcrumbs":"Rust API » Rust API Documentation and Packages » blockchain","id":"447","title":"blockchain"},"448":{"body":"db-sync-explorer jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » db-sync-explorer","id":"448","title":"db-sync-explorer"},"449":{"body":"explorer : explorer service for jormungandr cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » explorer : explorer service for jormungandr","id":"449","title":"explorer : explorer service for jormungandr"},"45":{"body":"In order to start the node, you first need to gather the blockchain information you need to connect to. the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. These information are essentials to start your node in a secure way. The genesis block is the first block of the blockchain. It contains the static parameters of the blockchain as well as the initial funds. Your node will utilise the Hash to retrieve it from the other peers. It will also allows the Node to verify the integrity of the downloaded genesis block . The trusted peers are the nodes in the public network that your Node will trust in order to initialise the Peer To Peer network.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting a passive node","id":"45","title":"Starting a passive node"},"450":{"body":"integration-tests catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit iapyx catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vitup catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » integration-tests","id":"450","title":"integration-tests"},"451":{"body":"jormungandr : Midgard Serpent cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandr : Midgard Serpent","id":"451","title":"jormungandr : Midgard Serpent"},"452":{"body":"jormungandrwallet chain-addr chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandrwallet","id":"452","title":"jormungandrwallet"},"453":{"body":"mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » mjolnir","id":"453","title":"mjolnir"},"454":{"body":"settings","breadcrumbs":"Rust API » Rust API Documentation and Packages » settings","id":"454","title":"settings"},"455":{"body":"sparse-array","breadcrumbs":"Rust API » Rust API Documentation and Packages » sparse-array","id":"455","title":"sparse-array"},"456":{"body":"vit-servicing-station-cli vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-cli","id":"456","title":"vit-servicing-station-cli"},"457":{"body":"vit-servicing-station-server vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-server","id":"457","title":"vit-servicing-station-server"},"458":{"body":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes symmetric-cipher wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » Rust API Documentation and Packages » wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology","id":"458","title":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology"},"459":{"body":"This guide is intended to be a set of guidelines, not hard rules. These represent the default for Rust code. Exceptions can (and sometimes should) be made, however: They should have a comment explaining what is special about this code which means the rule shouldn’t apply here. Exceptions should be highlighted in the PR and discussed with the team. 🦀 Rust Style Guide Toolchain Basic Rules Creating a new crate Exceptions for clippy Guidelines Prefer references over generics Abbreviations and naming things General advice around names Pay attention to the public API of your crate Type safety Use newtypes (a.k.a. microtypes) Don’t over-abstract Unsafe code Docs Doctests Write code as if it’s going to be in a web server Error handling Handling expected errors Use thiserror for recoverable errors Use color_eyre for unrecoverable errors","breadcrumbs":"Rust API » 🦀 Rust Style Guide » 🦀 Rust Style Guide","id":"459","title":"🦀 Rust Style Guide"},"46":{"body":"Your node configuration file may look like the following:","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » The node configuration","id":"46","title":"The node configuration"},"460":{"body":"We use the latest stable version of Rust. You can get an up-to-date toolchain by running nix develop. If you’re not a Nix user, make sure you have the correct versions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Toolchain","id":"460","title":"Toolchain"},"461":{"body":"Formatting is “whatever rustfmt does”. In cases where rustfmt doesn’t yet work (i.e. macros, let-else), try to stay consistent with the rest of the codebase. Clippy should be used whenever possible, with pedantic lints turned on. There are some lints (particularly those from pedantic) that are generally unhelpful, often due to high false positive rates There is a list of known exceptions that can be added to if you run into anything particularly bad. Clippy is not enabled for older parts of the codebase. This is allowed for legacy code, but any new code should have clippy enabled. We’re actively working to get it enabled on everything Avoid raw identifiers. Instead, use abbreviations/misspellings (i.e. r#crate -> krate, r#type -> ty, etc) TLDR: run: cargo fmt\ncargo clippy\ncargo `clippy` --all-features before submitting a PR","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Basic Rules","id":"461","title":"Basic Rules"},"462":{"body":"We add the following preamble to all crates’ lib.rs: #![warn(clippy::pedantic)]\n#![forbid(clippy::integer_arithmetic)]\n#![forbid(missing_docs)]\n#![forbid(unsafe_code)]\n#![allow(/* known bad lints outlined below */)] We enable #![forbid(missing_docs)] for a couple of reasons: it forces developers to write doc comments for publicly exported items it serves as a reminder that the item you’re working on is part of your public API We enable #![forbid(unsafe_code)] to reinforce the fact that unsafe code should not be mixed in with the rest of our code . More details are below. We enable #![forbid(integer_arithmetic)] to prevent you from writing code like: let x = 1;\nlet y = 2;\nlet z = x + y; Why is this bad? Integer arithmetic may panic or behave unexpectedly depending on build settings. In debug mode, overflows cause a panic, but in release mode, they silently wrap. In both modes, division by 0 causes a panic. By forbidding integer arithmetic, you have to choose a behaviour, by writing either: a.checked_add(b) to return an Option that you can error-handle a.saturating_add(b) to return a + b, or the max value if an overflow occurred a.wrapping_add(b) to return a + b, wrapping around if an overflow occurred By being explicit, we prevent the developer from “simply not considering” how their code behaves in the presence of overflows. In a ledger application, silently wrapping could be catastrophic, so we really want to be explicit about what behaviour we expect.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Creating a new crate","id":"462","title":"Creating a new crate"},"463":{"body":"These lints are disabled: clippy::match_bool - sometimes a match statement with true => and false => arms is sometimes more concise and equally readable clippy::module_name_repetition - warns when creating an item with a name than ends with the name of the module it’s in clippy::derive_partial_eq_without_eq - warns when deriving PartialEq and not Eq. This is a semver hazard. Deriving Eq is a stronger semver guarantee than just PartialEq, and shouldn’t be the default. clippy::missing_panics_doc - this lint warns when a function might panic, but the docs don’t have a panics section. This lint is buggy, and doesn’t correctly identify all panics. Code should be written to explicitly avoid intentional panics. You should still add panic docs if a function is intended to panic under some conditions. If a panic may occur, but you’d consider it a bug if it did, don’t document it. We disable this lint because it creates a false sense of security.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Exceptions for clippy","id":"463","title":"Exceptions for clippy"},"464":{"body":"","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Guidelines","id":"464","title":"Guidelines"},"465":{"body":"It’s tempting to write a function like this: fn use_str(s: impl AsRef) { let s = s.as_ref(); println!(\"{s}\");\n} Unfortunately, this has a few downsides: it increases compile times if used in a trait, it makes that trait not object-safe if the body of the function is large, it bloats binary size, which can hurt performance by increasing pressure on the instruction cache it makes type inference harder Now that’s not to say you should never use generics. Of course, there are plenty of good reasons to use generics. But if the only reason to make your function generic is “slightly easier to use at the call-site”, consider just using a plain reference/slice instead: fn use_str(s: &str) { println!(\"{s}\");\n} This does mean you may have to use .as_ref() at the call-site, but generally this is preferred compared to the downsides of using generics. Similar logic applies to AsRef, Into, and a few other common types. The general principle is that a little bit of extra text at the call-site is usually worth the benefits from not having generic functions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Prefer references over generics","id":"465","title":"Prefer references over generics"},"466":{"body":"We should be careful with abbreviations. Similar to above, they do indeed shorten the code you write, but at the cost of some readability. It’s important to balance the readability cost against the benefits of shorter code. Some guidelines for when to use abbreviations: if it’s something you’re going to type a lot, an abbreviation is probably the right choice. (i.e. s is an OK name for a string in very string-heavy code) if it’s a well-known abbreviation, it’s probably good (e.g. ctx for “context”, db for “database”) if it’s ambiguous (i.e. it could be short for multiple things) either use the full word, or a longer abbreviation that isn’t ambiguous. Remember that abbreviations are context-sensitive. (if I see db in a database library, it’s probably “database”. If I see it in an audio processing library it is probably “decibels”). General advice around names avoid foo.get_bar(), instead just call it foo.bar() use into_foo() for conversions that consume the original data use as_foo() for conversions that convert borrowed data to borrowed data use to_foo() for conversions that are expensive use into_inner() for extracting a wrapped value","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Abbreviations and naming things","id":"466","title":"Abbreviations and naming things"},"467":{"body":"Items (functions, modules, structs, etc) should be private by default. This is what Rust does anyways, but make sure you pay attention when marking something pub. Try to keep the public API of your crate as small as possible. It should contain only the items needed to provide the functionality it’s responsible for. A good “escape hatch” is to mark things as pub(crate). This makes the item pub but only within your crate . This can be handy for “helper functions” that you want to use everywhere within your crate, but don’t want to be available outside.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Pay attention to the public API of your crate","id":"467","title":"Pay attention to the public API of your crate"},"468":{"body":"Rust has a powerful type system, so use it! Where possible, encode important information in the type system. For example, using NonZeroU64 might make sense if it would be ridiculous for a number to be zero. Of course, you can go too far with this. Rust’s type system is Turing-complete, but we don’t want to write our whole program in the type system.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Type safety","id":"468","title":"Type safety"},"469":{"body":"If you are handling email addresses, don’t use String. Instead, create a newtype wrapper with: struct Email(String); This prevents you from using a Password where you meant to use an Email, which catches more bugs at compile time. Consider using the microtype library to generate boilerplate: #[string]\nString { Email, Username, Address, // etc...\n} This generates struct Email(String), struct Username(String), etc. for you. See the docs for more info. If your type is responsible for handling secret data, mark it #[secret] to: zeroize the memory on drop redact the Debug impl prevent serialization prevent use without .expose_secret()","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Use newtypes (a.k.a. microtypes)","id":"469","title":"Use newtypes (a.k.a. microtypes)"},"47":{"body":"This config shouldn’t work as it is, the ip address and port for the trusted peer should be those of an already running node. Also, the public_address (‘u.x.v.t’) should be a valid address (you can use an internal one, eg: 127.0.0.1). Furthermore, you need to have permission to write in the path specified by the storage config. storage: \"/mnt/cardano/storage\" rest: listen: \"127.0.0.1:8443\" p2p: trusted_peers: - address: \"/ip4/104.24.28.11/tcp/8299\" id: ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d Description of the fields: storage: (optional) Path to the storage. If omitted, the blockchain is stored in memory only. log: (optional) Logging configuration: level: log messages minimum severity. If not configured anywhere, defaults to “info”. Possible values: “off” “critical” “error” “warn” “info” “debug” “trace” format: Log output format, plain or json. output: Log output destination. Possible values are: stdout: standard output stderr: standard error syslog: syslog (only available on Unix systems) syslogudp: remote syslog (only available on Unix systems) host: address and port of a syslog server hostname: hostname to attach to syslog messages journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages. file: path to the log file. rest: (optional) Configuration of the REST endpoint. listen: address : port to listen for requests tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled p2p: P2P network settings trusted_peers: (optional) the list of nodes’s multiaddr with their associated public_id to connect to in order to bootstrap the P2P topology (and bootstrap our local blockchain); public_id: (optional) the node’s public ID that will be used to identify this node to the network. public_address: multiaddr string specifying address of the P2P service. This is the public address that will be distributed to other peers of the network that may find interest in participating to the blockchain dissemination with the node. listen: (optional) address : port to specifies the address the node will listen to to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: The dissemination topics this node is interested to hear about: messages: Transactions and other ledger entries. Typical setting for a non-mining node: low. For a stakepool: high; blocks: Notifications about new blocks. Typical setting for a non-mining node: normal. For a stakepool: high. max_connections: The maximum number of simultaneous P2P connections this node should maintain. explorer: (optional) Explorer settings enabled: True or false no_blockchain_updates_warning_interval: (optional, seconds) if no new blocks were received after this period of time, the node will start sending you warnings in the logs.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Note","id":"47","title":"Note"},"470":{"body":"In general, prefer plain functions over a struct + trait implementation. For example, instead of this: // BAD\ntrait GetBar { fn bar(&self) -> &Bar;\n} impl GetBar for Foo { fn bar(&self) -> &Bar { &self.bar }\n} write this: // GOOD\nimpl Foo { fn bar(&self) -> &Bar { &self.bar }\n} I.e., don’t use a trait if you don’t need it. A common reason why people do this is to mock out a particular function call for testing. This can be useful in a few select places, such as interacting with the real world. Eg, networking, clocks, randomness, etc. However, it has some significant downsides. it means you’re not actually testing this code. This might be fine for some types of code (e.g. database code). It might be unreasonable to rely on a database for unit tests. However, if your whole test suite is organized around this, your business logic won’t get tested. it forces you to use a trait, which have restrictions that plain functions don’t have: it forces you into either generics or dynamic dispatch (often with a heap allocation if you don’t want to play the lifetime game) you may now have to think about object safety, which can be very tricky for some APIs async functions are not properly supported it’s not usable in a const context Some alternative patterns are: try to rewrite your test to avoid needing a mock if you know all the variants at compile time, consider using an enum swap out the implementation with conditional compilation","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Don’t over-abstract","id":"470","title":"Don’t over-abstract"},"471":{"body":"If you need unsafe code, put it in its own crate with a safe API. And really think hard about whether you need unsafe code. There are times when you absolutely do need it, but this project cares more about correctness than performance. If you find yourself wanting to use unsafe, try the following: if you want to create bindings to a C/C++ library: First, see if there is a pure-Rust implementation. Otherwise, search on crates.io for a _sys crate. if you want to create a cool data structure that requires unsafe: does it really need unsafe? is it a doubly linked list? If so, have you got benchmarks that show that a VecDeque is insufficient? Something something cache-friendly… is there a suitable implementation on crates.io? is this data structure really noticeably better than what we have in std? if you want to do a performance optimization (e.g. using unreachable_unchecked() to remove a bounds check): Encode it in the type system, and put it in a separate crate with a safe API. If you can’t do that, it’s probably an indication that the mental model is also too complicated for a human to keep track of. if you want to write a test that makes sure the code does the right thing “even in the presence of UB”, just don’t All unsafe code must be tested with Miri.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Unsafe code","id":"471","title":"Unsafe code"},"472":{"body":"As mentioned above, we should enable #![deny(missing_docs)] on all new code. But that doesn’t mean we shouldn’t document private items. Ideally, we’d document as much as possible. Of course, for tiny helper functions, or functions whose behaviour is obvious from looking don’t need documentation. For example, this sort of comment doesn’t add much: /// Sets self.bar to equal bar\nfn set_bar(&mut self, bar: Bar) { self.bar = bar;\n} If this is a private member, don’t bother with this comment. If it’s public, something like this is fine just to get clippy to shut up. But if it’s at all unclear what’s going on, try to use a more descriptive comment. If adding a dependency, add a comment explaining what the dependency does.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Docs","id":"472","title":"Docs"},"473":{"body":"Try to use doctests. Especially for less obvious code, a small example can be really helpful. Humans learn by copying examples, so providing some can drastically reduce the amount of time a new contributor needs to become productive. If you need some setup for your tests that you don’t want to render in docs, prefix the line with #. When combined with the include macro, this can lead to pretty concise but also powerful test setup. If you need some inspiration, check out the docstests for diesel.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Doctests","id":"473","title":"Doctests"},"474":{"body":"Write code as if it’s going to end up being run in a web server. This means a few things: all inputs are potentially malicious code should be usable as a library without going through a text interface (i.e. your library should expose a Rust API)","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Write code as if it’s going to be in a web server","id":"474","title":"Write code as if it’s going to be in a web server"},"475":{"body":"Error handling in Rust is complex, which represents the real-world complexity of error handling. Broadly speaking, there are two types of error: Expected errors are errors that are expected to occur during normal operation of the application. For example, in bug free code, it would still be expected to see network timeout errors, since that networking is inherently fallible. The exact error handling strategy may vary, but often involves returning a Result. Unexpected errors are errors that are not expected to occur. If they do occur, it represents a bug. These errors are handled by panicking. As much as possible, we try to make these cases impossible by construction by using the correct types for data. For example, imagine you have a struct that represents “a list with at least one element”. You could write: struct NonEmptyList { inner: Vec,\n} impl NonEmptyList { /// Doesn't need to be an Option<&T> because the list is guaranteed to have at least 1 element fn first(&self) -> &T { inner.get(0).expect(\"guaranteed to have at least 1 element\") }\n} This would be fine , since it represents a bug if this panic is ever hit. But it would be better to write it like this: struct NonEmptyList { head: T, tail: Vec,\n} impl NonEmptyList { fn first(&self) -> &T { &self.head }\n} This provides the compiler with more information about the invariants of our type. This allows us to eliminate the error at compile time.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Error handling","id":"475","title":"Error handling"},"476":{"body":"Well-behaved code doesn’t panic. So if our response to encountering an expected error is to panic, our software is not well-behaved. Instead, we should use Result to represent data that might be an error. But how do we pick E? There are two main choices for E: Use thiserror for recoverable errors In contexts where we may want to recover from errors, we should use a dedicated error type. We generate these with thiserror: #[derive(Debug, Error)]\nenum FooError { #[error(\"failed to bar\")] Bar, #[error(\"failed to baz\")] Baz,\n} This allows the user to write: match try_foo() { Ok(foo) => println!(\"got a foo: {foo}\"), Err(FooError::Bar) => eprintln!(\"failed to bar\"), Err(FooError::Baz) => eprintln!(\"failed to baz\"),\n} Use color_eyre for unrecoverable errors In contexts where we don’t want to recover from errors, use Report from the color_eyre crate. This is a trait object based error type which allows you to “fire and forget” an error. While technically possible , it’s less ergonomic to recover from a Result. Therefore, only use this in contexts where the correct behaviour is “exit the program”. This is commonly the case in CLI apps. However , even in CLI apps, it’s good practice to split the logic into a lib.rs file (or modules) and have a separate binary. Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Handling expected errors","id":"476","title":"Handling expected errors"},"477":{"body":"","breadcrumbs":"Web API » Web API » Web API","id":"477","title":"Web API"},"478":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » dbSync Explorer HTTP/REST API V1 » dbSync Explorer HTTP/REST API V1","id":"478","title":"dbSync Explorer HTTP/REST API V1"},"479":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Servicing Station HTTP/REST API V0 » VIT Servicing Station HTTP/REST API V0","id":"479","title":"VIT Servicing Station HTTP/REST API V0"},"48":{"body":"jormungandr --config config.yaml --genesis-block-hash 'abcdef987654321....' The ‘abcdef987654321….’ part refers to the hash of the genesis. This should be given to you from one of the peers in the network you are connecting to. In case you have the genesis file (for example block-0.bin, because you are creating the network) you can get this hash with jcli. jcli genesis hash --input block-0.bin or, in case you only have the yaml file jcli genesis encode --input genesis.yaml | jcli genesis hash Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting the node","id":"48","title":"Starting the node"},"480":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock Farm HTTP/REST API V0 » VIT Testing Mock Farm HTTP/REST API V0","id":"480","title":"VIT Testing Mock Farm HTTP/REST API V0"},"481":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock HTTP/REST API V0 » VIT Testing Mock HTTP/REST API V0","id":"481","title":"VIT Testing Mock HTTP/REST API V0"},"482":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V0 » Vote Ledger HTTP/REST API V0","id":"482","title":"Vote Ledger HTTP/REST API V0"},"483":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V1 » Vote Ledger HTTP/REST API V1","id":"483","title":"Vote Ledger HTTP/REST API V1"},"484":{"body":"First off, thanks for taking the time to contribute! ❤️ All types of contributions are encouraged and valued. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 And if you like the project, but just don’t have time to contribute, that’s fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: Star the project Tweet about it Refer this project in your project’s readme Mention the project at local meetups and tell your friends/colleagues","breadcrumbs":"Contributing to Catalyst Core » Contributing to Catalyst Core","id":"484","title":"Contributing to Catalyst Core"},"485":{"body":"Code of Conduct I Have a Question I Want To Contribute Reporting Bugs Suggesting Enhancements Your First Code Contribution Improving The Documentation Styleguides Commit Messages","breadcrumbs":"Contributing to Catalyst Core » Table of Contents","id":"485","title":"Table of Contents"},"486":{"body":"This project and everyone participating in it is governed by the Catalyst Core Code of Conduct . By participating, you are expected to uphold this code. Please report unacceptable behavior to mailto:code-of-conduct@iohk.io .","breadcrumbs":"Contributing to Catalyst Core » Code of Conduct","id":"486","title":"Code of Conduct"},"487":{"body":"If you want to ask a question, we assume that you have read the available Documentation . Before you ask a question, it is best to search for existing Issues that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. If you then still feel the need to ask a question and need clarification, we recommend the following: Open an Issue . Provide as much context as you can about what you’re running into. Provide project and platform versions (rustc --version --verbose, etc), depending on what seems relevant. We will then take care of the issue as soon as possible.","breadcrumbs":"Contributing to Catalyst Core » I Have a Question","id":"487","title":"I Have a Question"},"488":{"body":"","breadcrumbs":"Contributing to Catalyst Core » I Want To Contribute","id":"488","title":"I Want To Contribute"},"489":{"body":"When contributing to this project, you must agree: that you have authored 100% of the content that you have the necessary rights to the content and that the content you contribute may be provided under the project license.","breadcrumbs":"Contributing to Catalyst Core » Legal Notice","id":"489","title":"Legal Notice"},"49":{"body":"It is possible to query the node via its REST Interface. In the node configuration, you have set something like: # ... rest: listen: \"127.0.0.1:8443\" #... This is the REST endpoint to talk to the node, to query blocks or send transaction. It is possible to query the node stats with the following end point: curl http://127.0.0.1:8443/api/v0/node/stats The result may be: {\"blockRecvCnt\":120,\"txRecvCnt\":92,\"uptime\":245} THE REST API IS STILL UNDER DEVELOPMENT Please note that the end points and the results may change in the future. To see the whole Node API documentation: Voting ledger REST API V0 Voting ledger REST API V1 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » REST Api » REST Api","id":"49","title":"REST Api"},"490":{"body":"Before Submitting a Bug Report A good bug report shouldn’t leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible. Make sure that you are using the latest version. Determine if your bug is really a bug and not an error on your side. e.g. using incompatible environment components/versions (Make sure that you have read the documentation . If you are looking for support, you might want to check this section ). To see if other users have experienced (and potentially already solved) the same issue you are having. Check if there is not already a bug report existing for your bug or error in the bug tracker . Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. Collect information about the bug: Stack trace (Traceback) OS, Platform and Version (Windows, Linux, macOS, x86, ARM) Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. Possibly your input and the output Can you reliably reproduce the issue? And can you also reproduce it with older versions? How Do I Submit a Good Bug Report? You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to contact@iohk.io . We use GitHub issues to track bugs and errors. If you run into an issue with the project: Open an Issue . (Since we can’t be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.) Explain the behavior you would expect and the actual behavior. Please provide as much context as possible. Describe the reproduction steps that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case. Provide the information you collected in the previous section. Once it’s filed: The project team will label the issue accordingly. A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps. The issue would then be marked as needs-repro. Bugs with the needs-repro tag will not be addressed until they are reproduced. If the team is able to reproduce the issue, it will be marked needs-fix. It may possibly be marked with other tags (such as critical). The issue will then be left to be implemented by someone .","breadcrumbs":"Contributing to Catalyst Core » Reporting Bugs","id":"490","title":"Reporting Bugs"},"491":{"body":"This section guides you through submitting an enhancement suggestion for Catalyst Core, including completely new features and minor improvements to existing functionality . Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions. Before Submitting an Enhancement Make sure that you are using the latest version. Read the documentation carefully. Find out if the functionality is already covered, maybe by an individual configuration. Perform a search to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. Find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you’re just targeting a minority of users, consider writing an add-on/plugin library. How Do I Submit a Good Enhancement Suggestion? Enhancement suggestions are tracked as GitHub issues . Use a clear and descriptive title for the issue to identify the suggestion. Provide a step-by-step description of the suggested enhancement in as many details as possible. Describe the current behavior and explain which behavior you expected to see instead and why. At this point you can also tell which alternatives do not work for you. You may want to include screenshots and animated GIFs . This can help you demonstrate the steps or point out the part which the suggestion is related to. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux. Explain why this enhancement would be useful to most Catalyst Core users. You may also want to point out the other projects that solved it better and which could serve as inspiration.","breadcrumbs":"Contributing to Catalyst Core » Suggesting Enhancements","id":"491","title":"Suggesting Enhancements"},"492":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Your First Code Contribution","id":"492","title":"Your First Code Contribution"},"493":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Improving The Documentation","id":"493","title":"Improving The Documentation"},"494":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Styleguides","id":"494","title":"Styleguides"},"495":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Commit Messages","id":"495","title":"Commit Messages"},"496":{"body":"","breadcrumbs":"Contributor Covenant Code of Conduct » Contributor Covenant Code of Conduct","id":"496","title":"Contributor Covenant Code of Conduct"},"497":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Contributor Covenant Code of Conduct » Our Pledge","id":"497","title":"Our Pledge"},"498":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others’ private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Contributor Covenant Code of Conduct » Our Standards","id":"498","title":"Our Standards"},"499":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Responsibilities","id":"499","title":"Enforcement Responsibilities"},"5":{"body":"This chapter covers the general concepts of the blockchain, and their application in the node, and is followed by the node organisation and the user interaction with it.","breadcrumbs":"Core Ledger » General Concepts » General Concepts » General Concepts","id":"5","title":"General Concepts"},"50":{"body":"The node can be configured to work as a explorer. This consumes more resources, but makes it possible to query data otherwise not available.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Explorer mode","id":"50","title":"Explorer mode"},"500":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Contributor Covenant Code of Conduct » Scope","id":"500","title":"Scope"},"501":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at conduct@iohk.io. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement","id":"501","title":"Enforcement"},"502":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Guidelines","id":"502","title":"Enforcement Guidelines"},"503":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Contributor Covenant Code of Conduct » 1. Correction","id":"503","title":"1. Correction"},"504":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 2. Warning","id":"504","title":"2. Warning"},"505":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 3. Temporary Ban","id":"505","title":"3. Temporary Ban"},"506":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Contributor Covenant Code of Conduct » 4. Permanent Ban","id":"506","title":"4. Permanent Ban"},"507":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla’s code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations . Found a bug? Edit this page on GitHub.","breadcrumbs":"Contributor Covenant Code of Conduct » Attribution","id":"507","title":"Attribution"},"508":{"body":"This markup is available to enhance the presentation of the book. Info A beautifully styled message. Example My example is the best! Note A plain note. Data loss The following steps can lead to irrecoverable data corruption. This will take a while, go and grab a drink of water. Referencing and dereferencing The opposite of referencing by using & is dereferencing , which is accomplished with the dereference operator, *. Bug This syntax won’t work in Python 3: print \"Hello, world!\"","breadcrumbs":"Example Enhanced Markup » Example Enhanced Markup","id":"508","title":"Example Enhanced Markup"},"509":{"body":"AB Don’t Click Me Can helpAnyoneGo to https://github.com/input-output-hk/catalyst-coreHow to contribute?Reporting bugsSharing ideasAdvocating Found a bug? Edit this page on GitHub.","breadcrumbs":"Example Enhanced Markup » Example Rendered Diagrams","id":"509","title":"Example Rendered Diagrams"},"51":{"body":"There are two ways of enabling the explorer api. It can either be done by passing the --enable-explorer flag on the start arguments or by the config file: explorer: enabled: true","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Configuration","id":"51","title":"Configuration"},"510":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Suffix » Suffix","id":"510","title":"Suffix"},"52":{"body":"For configuring CORS the explorer API, this needs to be done on the REST section of the config, as documented here .","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » CORS","id":"52","title":"CORS"},"53":{"body":"A graphql interface can be used to query the explorer data. When enabled, two endpoints are available in the REST interface : /explorer/graphql /explorer/playground The first is the one that queries are made against, for example: curl \\ -X POST \\ -H \"Content-Type: application/json\" \\ --data '{'\\ '\"query\": \"{'\\ ' status {'\\ ' latestBlock {'\\ ' chainLength'\\ ' id'\\ ' previousBlock {'\\ ' id'\\ ' }'\\ ' }'\\ ' }'\\ '}\"'\\ '}' \\ http://127.0.0.1:8443/explorer/graphql While the second serves an in-browser graphql IDE that can be used to try queries interactively. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » API","id":"53","title":"API"},"54":{"body":"","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » How to start a node as a leader candidate","id":"54","title":"How to start a node as a leader candidate"},"55":{"body":"Like in the passive node case, two things are needed to connect to an existing network the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. The node configuration could be the same as that for running a passive node . There are some differences depending if you are connecting to a network running a genesis or bft consensus protocol.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Gathering data","id":"55","title":"Gathering data"},"56":{"body":"Registering a stake pool In order to be able to generate blocks in an existing genesis network, a registered stake pool is needed. Creating the secrets file Put the node id and private keys in a yaml file in the following way: Example filename: node_secret.yaml genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file Starting the Genesis node jormungandr --genesis-block-hash asdf1234... --config config.yaml --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a genesis blockchain","id":"56","title":"Connecting to a genesis blockchain"},"57":{"body":"In order to generate blocks, the node should be registered as a slot leader in the network and started in the following way. The secret file Put secret key in a yaml file, e.g. node_secret.yaml as follows: bft: signing_key: ed25519_sk1kppercsk06k03yk4qgea.... where signing_key is a private key associated to the public id of a slot leader. Starting the BFT node jormungandr --genesis-block asdf1234... --config node.config --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a BFT blockchain","id":"57","title":"Connecting to a BFT blockchain"},"58":{"body":"This chapter covers the node documentation, necessary to have a working system. It covers the network, logging and storage parameters.","breadcrumbs":"Core Ledger » Configuration » Configuration » Configuration","id":"58","title":"Configuration"},"59":{"body":"This is an common example of a Jörmungandr node configuration file typically named node-config.yaml. However your’s will vary depending on your needs. Additionally, this configuration has been tested on a specific Jörmungandr version and may change with newer versions. It’s important to keep in mind that the trusted_peers portion of this configuration will be different for each Cardano blockchain network. If you’re trying to connect this node to a specific network, you need to know: its genesis block hash its associated list of trusted peers. Example Configuration - 1: ---\nlog: output: stderr level: info format: plain http_fetch_block0_service: - https://url/jormungandr-block0/raw/master/data skip_bootstrap: false # If set to true - will skip the bootstrapping phase bootstrap_from_trusted_peers: false p2p: public_address: \"/ip4/X.X.X.X/tcp/Y\" # This should match your public IP address (X) and port number (Y) #listen: 0.0.0.0:Y topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool allow_private_addresses: false max_connections: 256 max_client_connections: 192 gossip_interval: 10s max_bootstrap_attempts: # Default is not set trusted_peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 - address: \"/ip4/3.124.132.123/tcp/3000\" id: 431214988b71f3da55a342977fea1f3d8cba460d031a839c - address: \"/ip4/18.184.181.30/tcp/3000\" id: e9cf7b29019e30d01a658abd32403db85269fe907819949d - address: \"/ip4/184.169.162.15/tcp/3000\" id: acaba9c8c4d8ca68ac8bad5fe9bd3a1ae8de13816f40697c - address: \"/ip4/13.56.87.134/tcp/3000\" id: bcfc82c9660e28d4dcb4d1c8a390350b18d04496c2ac8474 policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 rest: listen: 127.0.0.1:3100 storage: \"./storage\" explorer: enabled: false mempool: pool_max_entries: 100000 log_max_entries: 100000 leadership: logs_capacity: 1024 no_blockchain_updates_warning_interval: 15m Note: The node configuration uses the YAML format.","breadcrumbs":"Core Ledger » Configuration » Configuration » Node Configuration","id":"59","title":"Node Configuration"},"6":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain concepts","id":"6","title":"Blockchain concepts"},"60":{"body":"","breadcrumbs":"Core Ledger » Configuration » Configuration » Advanced","id":"60","title":"Advanced"},"61":{"body":"Starting the node jormungandr with the command line option --rewards-report-all will collect a thorough report of all the reward distribution. It can then be accessed via the REST endpoints /api/v0/rewards/history/1 or /api/v0/rewards/epoch/10. this is not a recommended setting as it may take memory and may trigger some latency .","breadcrumbs":"Core Ledger » Configuration » Configuration » Rewards report","id":"61","title":"Rewards report"},"62":{"body":"By default we allow a single transaction to delay a block by 50 slots. This can be changed by adjusting the block_hard_deadline setting. The following is deprecated and will be removed If you want to record the reward distributions in a directory it is possible to set the environment variable: JORMUNGANDR_REWARD_DUMP_DIRECTORY=/PATH/TO/DIR/TO/WRITE/REWARD. If an error occurs while dumping the reward, the node will panic with an appropriate error message.","breadcrumbs":"Core Ledger » Configuration » Configuration » Handling of time-consuming transactions","id":"62","title":"Handling of time-consuming transactions"},"63":{"body":"The leadership field in your node config file is not mandatory, by default it is set as follow: leadership: logs_capacity: 1024 logs_capacity: the maximum number of logs to keep in memory. Once the capacity is reached, older logs will be removed in order to leave more space for new ones [default: 1024] Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Leadership » Leadership","id":"63","title":"Leadership"},"64":{"body":"The following options are available in the log section: level: log messages minimum severity. If not configured anywhere, defaults to info. Possible values: off, critical, error, warn, info, debug, trace format: Log output format, plain or json output: Log output destination (multiple destinations are supported). Possible values are: stdout: standard output stderr: standard error journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages file: path to the log file","breadcrumbs":"Core Ledger » Configuration » Logging » Logging","id":"64","title":"Logging"},"65":{"body":"A single configurable backend is supported.","breadcrumbs":"Core Ledger » Configuration » Logging » Example","id":"65","title":"Example"},"66":{"body":"log: output: stdout level: trace format: plain","breadcrumbs":"Core Ledger » Configuration » Logging » Output to stdout","id":"66","title":"Output to stdout"},"67":{"body":"log: output: file: example.log level: info format: json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Logging » Output to a file","id":"67","title":"Output to a file"},"68":{"body":"When running an active node (BFT leader or stake pool) it is interesting to be able to make choices on how to manage the pending transactions: how long to keep them, how to prioritize them etc. The mempool field in your node config file is not mandatory, by default it is set as follow: mempool: pool_max_entries: 10000 log_max_entries: 100000 pool_max_entries: (optional, default is 10000). Set a maximum size of the mempool log_max_entries: (optional, default is 100000). Set a maximum size of fragment logs persistent_log: (optional, disabled by default) log all incoming fragments to log files, rotated on a hourly basis. The value is an object, with the dir field specifying the directory name where log files are stored.","breadcrumbs":"Core Ledger » Configuration » Mempool » Mempool","id":"68","title":"Mempool"},"69":{"body":"A persistent log is a collection of records comprised of a UNIX timestamp of when a fragment was registereed by the mempool followed by the hex-encoded fragment body. This log is a line-delimited JSON stream. Keep in mind that enabling persistent logs could result in impaired performance of the node if disk operations are slow. Consider using a reasonably fast ssd for best results. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Mempool » Persistent logs","id":"69","title":"Persistent logs"},"7":{"body":"Slots represent the basic unit of time in the blockchain, and at each slot a block could be present. Consecutive slots are grouped into epochs, which have updatable size defined by the protocol.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Time","id":"7","title":"Time"},"70":{"body":"There are 2 different network interfaces which are covered by their respective section: rest: ...\np2p: ...","breadcrumbs":"Core Ledger » Configuration » Node network » Node network","id":"70","title":"Node network"},"71":{"body":"listen: listen address tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin, note that an origin should include a scheme, for example: http://127.0.0.1:8080. max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled","breadcrumbs":"Core Ledger » Configuration » Node network » REST interface configuration","id":"71","title":"REST interface configuration"},"72":{"body":"In order to enable TLS there must be provided certificate and private key files. jcli TLS requirements Note that jormungandr itself does not have any specific requirements for TLS certificates and you may give whatever you want including self-signed certificates as long as you do not intend to use jcli. The cryptography standards used by jcli as well as by all modern browsers and many http clients place the following requirements on certificates: A certificate should adhere to X.509 v3 with appropriate key usage settings and subject alternative name. A certificate must not be self-signed. Given that, your options are to either get a certificate from a well-known CA (Let’s Encrypt will do, jcli uses Mozilla’s CA bundle for verification) or create your own local CA and provide the root certificate to jcli via the --tls-cert-path option. Creating a local CA using OpenSSL and EasyRSA EasyRSA is a set of scripts that use OpenSSL and give you an easier experience with setting up your local CA. You can download them here . Go to easy-rsa/easy-rsa3. Configure your CA. To do that, create the configuration file (cp vars.example vars); open it with the text editor of your choise (for example, vim vars); uncomment and edit fields you need to change. Each CA needs to edit these lines (find then in your vars file according to their organization structure: #set_var.EASYRSA_REQ_COUNTRY––“US” #set_var.EASYRSA_REQ_PROVINCE—“California” #set_var.EASYRSA_REQ_CITY—“San.Francisco” #set_var.EASYRSA_REQ_ORG––“Copyleft.Certificate.Co” #set_var.EASYRSA_REQ_EMAIL–“me@example.net” #set_var.EASYRSA_REQ_OU—–“My.Organizational.Unit” When your configuration is ready, run ./easyrsa init-pki and ./easyrsa build-ca nopass. You will be prompted to set the name of your CA. Run ./easyrsa gen-req server nopass to create a new private key and a certificate signing request. You will be prompted to enter the host name (localhost for local testing). Run ./easyrsa sign-req server server to sign the request. To use the generated certificate, use it and the corresponding key in your jormungandr config: rest: tls: cert_file: priv_key_file: Use the CA certificate with jcli.","breadcrumbs":"Core Ledger » Configuration » Node network » Configuring TLS","id":"72","title":"Configuring TLS"},"73":{"body":"trusted_peers: (optional) the list of nodes’ multiaddr to connect to in order to bootstrap the p2p topology (and bootstrap our local blockchain). Note that you can use a DNS name in the following format: /dns4/node.example.com/tcp/3000. Use dns6 instead of dns4 if you want the peer to connect with IPv6. public_address: multiaddr the address to listen from and accept connection from. This is the public address that will be distributed to other peers of the network that may find interest into participating to the blockchain dissemination with the node. Currently only TCP is supported. node_key_file: (optional) Path to a file containing a bech32-encoded ed25519 secret key. The keys are used to advertize the node in network gossip and to authenticate a connection to the node if the node is used as a trusted peer. Most of the users don’t need to set this value as the key will be randomly generated if the option is not present. listen: (optional) socket address (IP address and port separated by a comma), specifies the interface address and port the node will listen at to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: (optional) the different topics we are interested to hear about: messages: notify other peers this node is interested about Transactions typical setting for a non mining node: \"low\". For a stakepool: \"high\"; blocks: notify other peers this node is interested about new Blocks. typical settings for a non mining node: \"normal\". For a stakepool: \"high\". max_connections: the maximum number of P2P connections this node should maintain. If not specified, an internal limit is used by default [default: 256] max_client_connections: the maximum number of client P2P connections this node should keep open. [default: 192] policy: (optional) set the setting for the policy module quarantine_duration set the time to leave a node in quarantine before allowing it back (or not) into the fold. It is recommended to leave the default value [default: 30min]. quarantine_whitelist set a trusted list of peers that will not be quarantined in any circumstance. It should be a list of valid addresses, for example: [\"/ip4/127.0.0.1/tcp/3000\"]. By default this list is empty, [default: []]. layers: (optional) set the settings for some of the poldercast custom layers (see below) gossip_interval: (optional) interval to start gossiping with new nodes, changing the value will affect the bandwidth. The more often the node will gossip the more bandwidth the node will need. The less often the node gossips the less good the resilience to node churn. [default: 10s] network-stuck_check: (optional) If no gossip has been received in the last interval, try to connect to nodes that were previously known to this node. This helps to rejoin the protocol in case there is a network outage and the node cannot reach any other peer. [default: 5min] max_bootstrap_attempts: (optional) number of times to retry bootstrapping from trusted peers. If not set, default behavior, the bootstrap process will keep retrying indefinitely, until completed successfully. If set to 0 (zero), the node will skip bootstrap all together – even if trusted peers are defined . If the node fails to bootstrap from any of the trusted peers and the number of bootstrap retry attempts is exceeded, then the node will continue to run without completing the bootstrap process. This will allow the node to act as the first node in the p2p network (i.e. genesis node), or immediately begin gossip with the trusted peers if any are defined.","breadcrumbs":"Core Ledger » Configuration » Node network » P2P configuration","id":"73","title":"P2P configuration"},"74":{"body":"The trusted peers is a concept that is not fully implemented yet. One of the key element for now is that this is the first node any node tries to connect in order to meet new nodes. Right now, as far as we know, only one of them is needed. IOHK provides a few others for redundancy.","breadcrumbs":"Core Ledger » Configuration » Node network » The trusted peers","id":"74","title":"The trusted peers"},"75":{"body":"Jörmungandr provides multiple additional layers to the poldercast default ones: the preferred list or the bottle in the sea. Preferred list This is a special list that allows to connect multiple nodes together without relying on the auto peer discovery. All entries in the preferred list are also whitelisted automatically, so they cannot be quarantined. configuration view_max: this is the number of entries to show in the view each round the layer will randomly select up to view_max entries from the whole preferred_list.peers list of entries. [default: 20] peers: the list of peers to keep in the preferred list [default: EMPTY] Also, the preferred list will never be quarantined or blacklisted, the node will attempt to connect to (up to view_max of) these nodes every time, even if some are down, unreachable or not operated anymore. COMPATIBILITY NOTE : in near future the peer list will be only a list of addresses and the ID part will not be necessary. Example p2p: layers: preferred_list: view_max: 20 peers: - address: '/ip4/127.0.0.1/tcp/2029' id: 019abc... - ...","breadcrumbs":"Core Ledger » Configuration » Node network » Layers","id":"75","title":"Layers"},"76":{"body":"This is needed to advertise your node as a trusted peer. If not set, the node will generate a random ID, which is fine for a regular user. You can generate a public id with openssl , for example: openssl rand -hex 24","breadcrumbs":"Core Ledger » Configuration » Node network » Setting the public_id","id":"76","title":"Setting the public_id"},"77":{"body":"This is an optional value to set. The default is: messages: low\nblocks: normal These values make sense for most of the users that are not running stake pools or that are not even publicly reachable. However for a publicly reachable node, the recommended settings would be: messages: normal\nblocks: normal and for a stake pool: messages: high\nblocks: high Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Node network » topics_of_interest","id":"77","title":"topics_of_interest"},"78":{"body":"","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prometheus","id":"78","title":"Prometheus"},"79":{"body":"To use Prometheus you need Jormungandr compiled with the prometheus-metrics feature enabled.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prerequisites","id":"79","title":"Prerequisites"},"8":{"body":"Fragments are part of the blockchain data that represent all the possible events related to the blockchain health (e.g. update to the protocol), but also and mainly the general recording of information like transactions and certificates.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Fragments","id":"8","title":"Fragments"},"80":{"body":"To enable Prometheus endpoint you need to enable it in the configuration file: prometheus: enabled: true Alternatively, you can use the --prometheus-metrics flag. When enabled, the Prometheus endpoint is exposed as http(s)://:/prometheus. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Usage","id":"80","title":"Usage"},"81":{"body":"This is the node command line helper. It is mostly meant for developers and stake pool operators. It allows offline operations: generating cryptographic materials for the wallets and stake pools; creating addresses, transactions and certificates; prepare a new blockchain and it allows simple interactions with the node: query stats; send transactions and certificates; get raw blocks and UTxOs.","breadcrumbs":"Core Ledger » jcli » jcli » jcli","id":"81","title":"jcli"},"82":{"body":"Jormungandr comes with a separate CLI to create and manipulate addresses. This is useful for creating addresses from their components in the CLI, for debugging addresses and for testing.","breadcrumbs":"Core Ledger » jcli » Address » Address","id":"82","title":"Address"},"83":{"body":"To display an address and verify it is in a valid format you can utilise: $ jcli address info ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0\ndiscrimination: testing\npublic key: ed25519e_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx or for example: $ jcli address \\ info \\ ca1qsy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxz8ah8dldkhvwfghn77se8dp76uguavzyxh5cccek9epryr7mkkr8n7kgx\ndiscrimination: production\npublic key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx\ngroup key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx","breadcrumbs":"Core Ledger » jcli » Address » Display address info","id":"83","title":"Display address info"},"84":{"body":"Each command following allows to create addresses for production and testing chains. For chains, where the discrimination is testing, you need to use the --testing flag. There’s 3 types of addresses: Single address : A simple spending key. This doesn’t have any stake in the system Grouped address : A spending key attached to an account key. The stake is automatically Account address : An account key. The account is its own stake","breadcrumbs":"Core Ledger » jcli » Address » Creating an address","id":"84","title":"Creating an address"},"85":{"body":"You can create a single address (non-staked) using the spending public key for this address utilising the following command: $ jcli address \\ single ed25519e_pk1jnlhwdgzv3c9frknyv7twsv82su26qm30yfpdmvkzyjsdgw80mfqduaean\nca1qw207ae4qfj8q4yw6v3ned6psa2r3tgrw9u3y9hdjcgj2p4pcaldyukyka8 To add the staking information and make a group address, simply add the account public key as a second parameter of the command: $ jcli address \\ single \\ ed25519_pk1fxvudq6j7mfxvgk986t5f3f258sdtw89v4n3kr0fm6mpe4apxl4q0vhp3k \\ ed25519_pk1as03wxmy2426ceh8nurplvjmauwpwlcz7ycwj7xtl9gmx9u5gkqscc5ylx\nca1q3yen35r2tmdye3zc5lfw3x992s7p4dcu4jkwxcda80tv8xh5ym74mqlzudkg42443nw08cxr7e9hmcuzals9ufsa9uvh723kvteg3vpvrcxcq","breadcrumbs":"Core Ledger » jcli » Address » Address for UTxO","id":"85","title":"Address for UTxO"},"86":{"body":"To create an account address you need the account public key and run: $ jcli address \\ account ed25519_pk1c4yq3hflulynn8fef0hdq92579n3c49qxljasrl9dnuvcksk84gs9sqvc2\nca1qhz5szxa8lnujwva8997a5q42nckw8z55qm7tkq0u4k03nz6zc74ze780qe","breadcrumbs":"Core Ledger » jcli » Address » Address for Account","id":"86","title":"Address for Account"},"87":{"body":"You can decide to change the address prefix, allowing you to provide more enriched data to the user. However, this prefix is not forwarded to the node, it is only for UI/UX. $ jcli address \\ account \\ --prefix=address_ \\ ed25519_pk1yx6q8rsndawfx8hjzwntfs2h2c37v5g6edv67hmcxvrmxfjdz9wqeejchg\naddress_1q5smgquwzdh4eyc77gf6ddxp2atz8ej3rt94nt6l0qes0vexf5g4cw68kdx Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Address » changing the address prefix","id":"87","title":"changing the address prefix"},"88":{"body":"Tooling for offline transaction creation","breadcrumbs":"Core Ledger » jcli » Certificate » Certificate","id":"88","title":"Certificate"},"89":{"body":"Builds a stake pool registration certificate. jcli certificate new stake-pool-registration \\ --vrf-key \\ --kes-key \\ --start-validity \\ --management-threshold \\ --owner \\ [--operator ] \\ [] Where: --operator - optional , public key of the operator(s) of the pool. output-file - optional , write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool registration certificate","id":"89","title":"Building stake pool registration certificate"},"9":{"body":"Blocks represent the spine of the blockchain, safely and securely linking blocks in a chain, whilst grouping valid fragments together. Blocks are composed of 2 parts: The header The content The header link the content with the blocks securely together, while the content is effectively a sequence of fragments.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blocks","id":"9","title":"Blocks"},"90":{"body":"It is possible to retire a stake pool from the blockchain. By doing so the stake delegated to the stake pool will become dangling and will need to be re-delegated. Remember though that the action won’t be applied until the next following epoch. I.e. the certificate will take a whole epoch before being applied, this should leave time for stakers to redistribute their stake to other pools before having their stake becoming dangling. It might be valuable for a stake pool operator to keep the stake pool running until the stake pool retirement certificate is fully applied in order to not miss any potential rewards. example: jcli certificate new stake-pool-retirement \\ --pool-id \\ --retirement-time \\ [] where: output-file - optional , write the output to the given file or print it to the standard output if not defined. --retirement-time - is the number of seconds since the start in order to make the stake pool retire. 0 means as soon as possible. --pool-id - hex-encoded stake pool ID. Can be retrieved using jcli certificate get-stake-pool-id command. See here for more details.","breadcrumbs":"Core Ledger » jcli » Certificate » Retiring a stake pool","id":"90","title":"Retiring a stake pool"},"91":{"body":"Builds a stake pool delegation certificate. jcli certificate new stake-delegation [--output ] Where: -o, --output - optional , write the output to the given file or print it to the standard output if not defined - the public key used in the stake key registration ... - hex-encoded stake pool IDs and their numeric weights in format “pool_id:weight” . If weight is not provided, it defaults to 1 .","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool delegation certificate","id":"91","title":"Building stake pool delegation certificate"},"92":{"body":"Builds an update proposal certificate. jcli certificate new update-proposal \\ \\ \\ [] Where: - the proposer ID, public key of the one who will sign this certificate - optional , the file path to the config file defining the config param changes. If omitted it will be read from the standard input. output-file - optional , write the output to the given file or print it to the standard output if not defined For example your config file may look like: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch\n- Block0Date: 17 # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' otherwise use 'test'.\n- Discrimination: test # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis\n- ConsensusVersion: bft # Number of slots in each epoch.\n- SlotsPerEpoch: 42 # The slot duration, in seconds, is the time between the creation # of 2 blocks\n- SlotDuration: 79 # Epoch stability depth\n- EpochStabilityDepth: 12 # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1]\n- ConsensusGenesisPraosActiveSlotsCoeff: \"0.004\" # This is the size, in bytes, of all the contents of the block (excluding the # block header).\n- BlockContentMaxSize: 96 # Add a new bft leader\n- AddBftLeader: ed25519_pk1g53asm6l4gcwk2pm5ylr092umaur5yes47rqv7ng5yl525x8g8mq5nk7x7 # Remove a bft leader\n- RemoveBftLeader: ed25519_pk1a3sjcg6gt4d05k5u6uqyzmsap8cjw37ul9cgztz8m697lvkz26uqg49nm3 # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate]\n- LinearFee: # this is the minimum value to pay for every transaction constant: 57 # the additional fee to pay for every inputs and outputs coefficient: 14 # the additional fee to pay if the transaction embeds a certificate certificate: 95 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Proposal expiration in epochs\n- ProposalExpiration: 68 # The speed to update the KES Key in seconds\n- KesUpdateSpeed: 120 # Increase the treasury amount\n- TreasuryAdd: 10000 # Set the total reward supply available for monetary creation\n- RewardPot: 100000000000000 # Set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document\n- TreasuryParams: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # it is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: max_limit: 10000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate)\n- RewardParams: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 2 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: 3/68 # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 89 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 20 # Fees for different types of certificates, to override the one # given in `certificate` just above.\n- PerCertificateFees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Set where to send the fees generated by transactions activity. # # It is possible to send all the generated fees to the \"treasury\"\n- FeesInTreasury: rewards - RewardLimitNone # Limit the epoch total reward drawing limit to a portion of the total # active stake of the system. # # for example, if set to 10%, the reward drawn will be bounded by the # 10% of the total active stake.\n- RewardLimitByAbsoluteStake: 22/72 # Settings to incentivize the numbers of stake pool to be registered # on the blockchain. # # These settings does not prevent more stake pool to be added. For example # if there is already 1000 stake pools, someone can still register a new # stake pool and affect the rewards of everyone else too. # # if the threshold is reached, the pool doesn't really have incentive to # create more blocks than 1 / set-value-of-pools % of stake.\n- PoolRewardParticipationCapping: min: 8 max: 52 # Add a new committee id\n- AddCommitteeId: 8103973beaa56f4e9440004ee8e8f8359ea18499d4199c1b018c072e7f503ea0 # Remove a committee id\n- RemoveCommitteeId: 6375dcdd714e69c197e99c32486ec28f166a50da7a1e3694807cd8a76f1c8175 - PerVoteCertificateFees: certificate_vote_plan: 52 certificate_vote_cast: 57 # The transaction max expiry epochs\n- TransactionMaxExpiryEpochs: 91","breadcrumbs":"Core Ledger » jcli » Certificate » Building update proposal certificate","id":"92","title":"Building update proposal certificate"},"93":{"body":"Builds a vote cast certificate.","breadcrumbs":"Core Ledger » jcli » Certificate » Building vote cast certificate","id":"93","title":"Building vote cast certificate"},"94":{"body":"jcli certificate new update-cast public \\ --choice \\ --proposal-index \\ --vote-plan-id \\ --output Where: - the number of choice within the proposal you vote for - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Public vote cast","id":"94","title":"Public vote cast"},"95":{"body":"jcli certificate new update-cast private \\ --choice \\ --options-size \\ --proposal-index \\ --vote-plan-id \\ --key-path --output Where: - the number of choice within the proposal you vote for - size of voting options - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional key to encrypt the vote with, if not provided read secret key from the stdit - optional write the output to the given file or print it to the standard output if not defined Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Certificate » Private vote cast","id":"95","title":"Private vote cast"},"96":{"body":"Tooling for working with a genesis file","breadcrumbs":"Core Ledger » jcli » Genesis » Genesis","id":"96","title":"Genesis"},"97":{"body":"jcli genesis [subcommand]","breadcrumbs":"Core Ledger » jcli » Genesis » Usage","id":"97","title":"Usage"},"98":{"body":"decode: Print the YAML file corresponding to an encoded genesis block. encode: Create the genesis block of the blockchain from a given yaml file. hash: Print the block hash of the genesis init: Create a default Genesis file with appropriate documentation to help creating the YAML file help","breadcrumbs":"Core Ledger » jcli » Genesis » Subcommands","id":"98","title":"Subcommands"},"99":{"body":"","breadcrumbs":"Core Ledger » jcli » Genesis » Examples","id":"99","title":"Examples"}},"length":511,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.6457513110645907}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.0},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.1622776601683795},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.1622776601683795},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":16,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"11":{"tf":1.0},"173":{"tf":1.4142135623730951},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":79,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.4142135623730951},"318":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.7320508075688772},"341":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.23606797749979},"278":{"tf":1.0},"303":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":12,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.0},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":82,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"458":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":2.0},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":3.605551275463989},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.242640687119285},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"248":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"320":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"331":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":2.0},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"289":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":1.7320508075688772},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.0},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":44,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.0},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"340":{"tf":2.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"361":{"tf":1.0},"392":{"tf":1.7320508075688772},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.7320508075688772},"339":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.0},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":43,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":53,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"40":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.0},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":73,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"367":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.7320508075688772},"397":{"tf":2.0},"399":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.449489742783178},"485":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"473":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":18,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.4641016151377544}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"496":{"tf":1.0},"507":{"tf":1.0}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":2.0},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":13,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.0},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"432":{"tf":2.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.7320508075688772},"444":{"tf":2.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":73,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.8284271247461903},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":3.3166247903554},"377":{"tf":3.1622776601683795},"378":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.7320508075688772},"439":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.0},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":26,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.0},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.6457513110645907},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"432":{"tf":1.0}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.0},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"485":{"tf":1.0},"491":{"tf":2.8284271247461903},"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.4641016151377544},"126":{"tf":2.23606797749979},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.4641016151377544},"476":{"tf":3.3166247903554},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"47":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"480":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.0},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":20,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":2.0},"276":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":2.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"381":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":2.23606797749979},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":53,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.7320508075688772},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":2.8284271247461903},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"189":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.449489742783178},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":13,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":1.4142135623730951},"3":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.4142135623730951},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"484":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.4142135623730951},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.7320508075688772},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.23606797749979},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":25,"docs":{"196":{"tf":1.0},"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.0}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.0},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"191":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"196":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":3.3166247903554},"151":{"tf":3.605551275463989},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":61,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.099504938362077},"450":{"tf":34.55430508634199},"451":{"tf":2.0},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.449489742783178},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"11":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"119":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":11,"docs":{"174":{"tf":1.4142135623730951},"228":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"3":{"tf":1.0},"422":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":16,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":16,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"299":{"tf":4.0},"300":{"tf":1.4142135623730951},"301":{"tf":2.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":25,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"232":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":1.7320508075688772},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.0},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":3.605551275463989},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"407":{"tf":1.0},"462":{"tf":1.7320508075688772},"50":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":72,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":125,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.7416573867739413},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":2.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.23606797749979},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":2.6457513110645907},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":5.291502622129181},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"16":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"36":{"tf":1.0},"446":{"tf":1.0},"458":{"tf":1.4142135623730951},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.4142135623730951},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"422":{"tf":1.0},"426":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":3.3166247903554},"191":{"tf":2.23606797749979},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":3.1622776601683795},"124":{"tf":3.1622776601683795},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.605551275463989},"91":{"tf":1.7320508075688772},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"391":{"tf":1.0},"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.23606797749979},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"118":{"tf":1.4142135623730951},"153":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":51,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.6457513110645907},"436":{"tf":3.0},"437":{"tf":3.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":2.8284271247461903},"501":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.47213595499958},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":76,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"153":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.1622776601683795},"126":{"tf":2.23606797749979},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":13,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":2.6457513110645907},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.23606797749979},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":66,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"334":{"tf":2.449489742783178},"335":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":1.7320508075688772},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":6.244997998398398},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"479":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.0},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":36,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.6457513110645907},"346":{"tf":1.0},"347":{"tf":2.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":19,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.0},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":74,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":4.242640687119285},"124":{"tf":2.449489742783178},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.449489742783178},"157":{"tf":2.0},"160":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":3.605551275463989},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":2.6457513110645907},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"321":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"332":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":2.449489742783178},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"443":{"tf":2.0},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":3.605551275463989},"91":{"tf":2.23606797749979},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":79,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":2.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":1.7320508075688772},"410":{"tf":1.0},"412":{"tf":1.0},"439":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.0},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":1.4142135623730951},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.1622776601683795}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.242640687119285},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":69,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":2.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.6457513110645907},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":2.0},"289":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":2.6457513110645907},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"310":{"tf":2.0},"311":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":4.0},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":66,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":3.872983346207417},"130":{"tf":4.69041575982343},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"200":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":1.7320508075688772},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"216":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"418":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":36,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.0},"346":{"tf":1.7320508075688772},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"379":{"tf":1.0},"386":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":33,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":19,"docs":{"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":58,"docs":{"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"147":{"tf":3.0},"148":{"tf":2.0},"149":{"tf":4.69041575982343},"151":{"tf":4.795831523312719},"152":{"tf":3.872983346207417},"174":{"tf":1.0},"191":{"tf":3.3166247903554},"196":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":3.605551275463989},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.8284271247461903},"95":{"tf":3.1622776601683795}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.449489742783178},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"477":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.0},"142":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":22,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"287":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.23606797749979},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.8284271247461903}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.23606797749979},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.3166247903554},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.0},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.3166247903554},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":3.0},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":2.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":18,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.449489742783178},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.449489742783178},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":43,"docs":{"11":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":94,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":4.123105625617661},"449":{"tf":6.6332495807108},"450":{"tf":22.956480566497994},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":4.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":2.0},"478":{"tf":2.0},"479":{"tf":2.0},"480":{"tf":2.0},"481":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":2.0},"49":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.449489742783178},"278":{"tf":1.0},"303":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.23606797749979},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":14,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":2.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":2.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":20,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":101,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.6457513110645907},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"458":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":3.7416573867739413},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.7320508075688772},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":10,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.358898943540674},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":2.0},"239":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":2.0},"265":{"tf":2.0},"268":{"tf":1.0},"271":{"tf":2.0},"290":{"tf":2.0},"293":{"tf":1.0},"297":{"tf":2.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":2.0},"320":{"tf":2.0},"325":{"tf":2.0},"331":{"tf":2.0},"336":{"tf":2.0},"343":{"tf":2.0},"348":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"362":{"tf":2.23606797749979},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":146,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":2.0},"307":{"tf":2.0},"413":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.23606797749979},"167":{"tf":2.23606797749979},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"91":{"tf":2.23606797749979},"92":{"tf":4.58257569495584},"93":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.7320508075688772},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":2.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":47,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.7320508075688772},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.7320508075688772},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.23606797749979},"318":{"tf":1.0},"319":{"tf":2.23606797749979},"320":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"330":{"tf":2.23606797749979},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"342":{"tf":2.23606797749979},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"361":{"tf":1.0},"392":{"tf":2.0},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":2.0},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.7320508075688772},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":48,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":2.0},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"301":{"tf":2.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.0},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.7320508075688772},"394":{"tf":1.0},"40":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":2.0},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.23606797749979},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"7":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.7320508075688772},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":115,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":2.0},"294":{"tf":2.0},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":2.0},"326":{"tf":1.0},"334":{"tf":2.0},"337":{"tf":1.0},"346":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.7320508075688772},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.0},"397":{"tf":2.449489742783178},"398":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":2.449489742783178},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.7320508075688772},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.8284271247461903},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.7320508075688772},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"473":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.7320508075688772},"71":{"tf":2.0}},"e":{"df":318,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"45":{"tf":1.0},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":12,"docs":{"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":15,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":2.449489742783178},"431":{"tf":2.0},"432":{"tf":2.449489742783178},"433":{"tf":2.449489742783178},"434":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":2.6457513110645907},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":86,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":3.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":3.4641016151377544},"377":{"tf":3.3166247903554},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"434":{"tf":2.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.7320508075688772},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":27,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.1622776601683795},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.8284271247461903},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.4142135623730951},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":14,"docs":{"216":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"432":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.7320508075688772},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.23606797749979},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"485":{"tf":1.0},"491":{"tf":3.0},"508":{"tf":2.0},"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":2.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.605551275463989},"126":{"tf":2.449489742783178},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":2.0},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.605551275463989},"476":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"376":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":2.23606797749979},"509":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.7320508075688772},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"393":{"tf":2.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"480":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.1622776601683795},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":2.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.4142135623730951},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":2.0}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":3.0},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":42,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"391":{"tf":1.0},"417":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":20,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":97,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":3.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":45,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":2.0},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.605551275463989},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":2.0},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":144,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.7320508075688772},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":2.0},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"232":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":2.0},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.449489742783178},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":2.0},"126":{"tf":2.449489742783178},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"288":{"tf":2.0},"289":{"tf":2.23606797749979},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.8284271247461903},"293":{"tf":1.7320508075688772},"294":{"tf":2.0},"295":{"tf":2.0},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.23606797749979},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"247":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"336":{"tf":1.0},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":33,"docs":{"196":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"287":{"tf":1.0},"302":{"tf":2.449489742783178},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"417":{"tf":1.0},"424":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.1622776601683795}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}},"df":15,"docs":{"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":16,"docs":{"196":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":2.449489742783178},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.7320508075688772},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":107,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":3.4641016151377544},"150":{"tf":1.0},"151":{"tf":3.7416573867739413},"152":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":97,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.14889156509222},"450":{"tf":34.55430508634199},"451":{"tf":2.23606797749979},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":29,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":2.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.8284271247461903},"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":2.23606797749979},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":2.0},"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.23606797749979}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":288,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.449489742783178},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.4142135623730951},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":20,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.4641016151377544},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":4.123105625617661},"300":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":26,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"120":{"tf":2.0},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"232":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":2.0},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":2.0},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"508":{"tf":2.0},"509":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":2.0},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"232":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":18,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":2.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"392":{"tf":1.4142135623730951},"393":{"tf":2.6457513110645907},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":2.0},"399":{"tf":2.449489742783178},"400":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.7320508075688772}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":88,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":2.0},"141":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.23606797749979},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.872983346207417},"11":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"374":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.6457513110645907},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":3.0},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":3.3166247903554},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":5.385164807134504},"74":{"tf":2.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":39,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":2.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"36":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":2.0},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.7320508075688772},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.7320508075688772},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"422":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":26,"docs":{"128":{"tf":2.0},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":3.4641016151377544},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":31,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":2.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":2.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.6457513110645907},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":50,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":3.1622776601683795},"124":{"tf":3.3166247903554},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.6457513110645907},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.7416573867739413},"91":{"tf":2.0},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":2.0},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"391":{"tf":1.0},"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.449489742783178},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":22,"docs":{"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"118":{"tf":1.7320508075688772},"153":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":56,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.449489742783178},"320":{"tf":1.7320508075688772},"321":{"tf":2.0},"322":{"tf":2.6457513110645907},"323":{"tf":2.449489742783178},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.449489742783178},"331":{"tf":2.0},"332":{"tf":2.0},"333":{"tf":2.6457513110645907},"334":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.8284271247461903},"435":{"tf":1.0},"436":{"tf":3.3166247903554},"437":{"tf":3.3166247903554},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":3.0},"501":{"tf":1.4142135623730951},"61":{"tf":2.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.47213595499958},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.23606797749979},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":77,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":3.0},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":2.6457513110645907},"172":{"tf":1.7320508075688772},"90":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":35,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":3.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.4142135623730951},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"45":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":79,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":2.0},"334":{"tf":2.6457513110645907},"335":{"tf":2.449489742783178},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":2.8284271247461903},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":2.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":6.244997998398398},"456":{"tf":2.0},"457":{"tf":2.0},"47":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":2.0},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":2.0},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":42,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":2.8284271247461903},"346":{"tf":1.4142135623730951},"347":{"tf":2.6457513110645907},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":2.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.23606797749979},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":42,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.1622776601683795},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":81,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":4.358898943540674},"124":{"tf":2.6457513110645907},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.8284271247461903},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.8284271247461903},"157":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":2.8284271247461903},"168":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"170":{"tf":2.449489742783178},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.449489742783178},"188":{"tf":3.7416573867739413},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":3.0},"318":{"tf":1.0},"32":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"33":{"tf":2.8284271247461903},"332":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"35":{"tf":2.8284271247461903},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.0},"443":{"tf":2.449489742783178},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.7416573867739413},"91":{"tf":2.449489742783178},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":87,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":2.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":2.0},"123":{"tf":2.0},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":2.0},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":21,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":2.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.358898943540674},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.8284271247461903},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":196,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"237":{"tf":2.449489742783178},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.8284271247461903},"245":{"tf":3.1622776601683795},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.449489742783178},"249":{"tf":2.6457513110645907},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":2.449489742783178},"254":{"tf":2.449489742783178},"255":{"tf":2.449489742783178},"256":{"tf":2.449489742783178},"257":{"tf":2.449489742783178},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":3.0},"303":{"tf":3.3166247903554},"304":{"tf":1.7320508075688772},"305":{"tf":2.23606797749979},"306":{"tf":2.6457513110645907},"307":{"tf":2.8284271247461903},"308":{"tf":2.6457513110645907},"309":{"tf":2.8284271247461903},"310":{"tf":2.8284271247461903},"311":{"tf":2.8284271247461903},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":2.6457513110645907},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"415":{"tf":2.23606797749979},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":4.123105625617661},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"258":{"tf":1.0},"309":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"232":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.6457513110645907},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":2.0},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":32,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":79,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":4.123105625617661},"130":{"tf":4.898979485566356},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":2.6457513110645907},"140":{"tf":1.7320508075688772},"141":{"tf":3.4641016151377544},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"144":{"tf":2.8284271247461903},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":2.0},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"216":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":2.0},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.449489742783178},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":27,"docs":{"418":{"tf":2.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.23606797749979},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":144,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.449489742783178},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":33,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":2.23606797749979},"357":{"tf":1.7320508075688772},"358":{"tf":2.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":2.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":48,"docs":{"361":{"tf":2.23606797749979},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":73,"docs":{"127":{"tf":2.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"147":{"tf":3.1622776601683795},"148":{"tf":2.449489742783178},"149":{"tf":4.898979485566356},"150":{"tf":1.0},"151":{"tf":5.0},"152":{"tf":4.123105625617661},"174":{"tf":1.0},"191":{"tf":3.872983346207417},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.4142135623730951},"373":{"tf":3.7416573867739413},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":3.0},"95":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.8284271247461903},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":9,"docs":{"459":{"tf":1.0},"474":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.1622776601683795},"142":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":35,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"287":{"tf":1.0},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":2.23606797749979},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"title":{"root":{"0":{"df":2,"docs":{"181":{"tf":1.0},"280":{"tf":1.0}}},"1":{"df":1,"docs":{"503":{"tf":1.0}}},"2":{"df":1,"docs":{"504":{"tf":1.0}}},"3":{"df":1,"docs":{"505":{"tf":1.0}}},"4":{"df":1,"docs":{"506":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"32":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"d":{"a":{"df":3,"docs":{"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}},"d":{"df":4,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"391":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"173":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":25,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"467":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"286":{"tf":1.0}}},"o":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"283":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"181":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"38":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"490":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"425":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"287":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":10,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"139":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"144":{"tf":1.0},"403":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"392":{"tf":1.0},"456":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.0},"316":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"471":{"tf":1.0},"474":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"495":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"217":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"486":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"241":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"385":{"tf":1.0},"485":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"496":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":4,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"484":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"462":{"tf":1.0},"467":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"39":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"376":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"213":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"448":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"35":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"432":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"396":{"tf":1.0},"446":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"399":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"499":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"491":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"403":{"tf":1.0},"404":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"475":{"tf":1.0},"476":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"393":{"tf":1.0},"480":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"381":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0}}}}}}},"d":{"df":3,"docs":{"177":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"366":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"231":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"474":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"287":{"tf":1.0},"459":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"216":{"tf":1.0},"464":{"tf":1.0},"502":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"432":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"df":2,"docs":{"380":{"tf":1.0},"428":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"113":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"493":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"176":{"tf":1.0},"186":{"tf":1.0},"368":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"424":{"tf":1.0},"450":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"407":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":1,"docs":{"191":{"tf":1.0}},"f":{"a":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"474":{"tf":1.0}}}}},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"235":{"tf":1.0},"251":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":6,"docs":{"205":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"458":{"tf":1.0}}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"y":{"df":4,"docs":{"102":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"405":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"n":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"453":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"388":{"tf":1.0},"393":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"351":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"407":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":3,"docs":{"226":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"311":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"462":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"377":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":25,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"166":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"465":{"tf":1.0},"470":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"16":{"tf":1.0},"284":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"446":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"164":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"253":{"tf":1.0},"256":{"tf":1.0},"415":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"372":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":11,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"128":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"151":{"tf":1.0},"29":{"tf":1.0},"467":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"410":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"160":{"tf":1.0}},"r":{"df":10,"docs":{"187":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"490":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"105":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"391":{"tf":1.0},"428":{"tf":1.0},"49":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":18,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"500":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"143":{"tf":1.0},"402":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"431":{"tf":1.0},"457":{"tf":1.0},"474":{"tf":1.0}}}},"i":{"c":{"df":14,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"378":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.0},"454":{"tf":1.0},"76":{"tf":1.0}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"125":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"134":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":23,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"123":{"tf":1.0}},"e":{"df":3,"docs":{"114":{"tf":1.0},"279":{"tf":1.0},"444":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"354":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}}}},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"459":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"485":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"x":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":36,"docs":{"190":{"tf":1.0},"211":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"450":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"309":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"373":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"444":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"468":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"418":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"338":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":5,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.0}}}}}},"v":{"0":{"df":4,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}}},"1":{"df":2,"docs":{"478":{"tf":1.0},"483":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.4142135623730951},"283":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"488":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"504":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"474":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/main/searchindex.json b/main/searchindex.json index b3cd6a59a6..ae6eecf52c 100644 --- a/main/searchindex.json +++ b/main/searchindex.json @@ -1 +1 @@ -{"doc_urls":["00_prologue.html#prologue","01_intro.html#introduction","01_intro.html#what-is-catalyst-core","02_core_ledger/index.html#core-ledger","02_core_ledger/index.html#mythology","02_core_ledger/01_concepts/index.html#general-concepts","02_core_ledger/01_concepts/blockchain.html#blockchain-concepts","02_core_ledger/01_concepts/blockchain.html#time","02_core_ledger/01_concepts/blockchain.html#fragments","02_core_ledger/01_concepts/blockchain.html#blocks","02_core_ledger/01_concepts/blockchain.html#blockchain","02_core_ledger/01_concepts/blockchain.html#consensus","02_core_ledger/01_concepts/blockchain.html#leadership","02_core_ledger/01_concepts/blockchain.html#leader","02_core_ledger/01_concepts/blockchain.html#transaction","02_core_ledger/01_concepts/blockchain.html#accounting","02_core_ledger/01_concepts/network.html#network-overview","02_core_ledger/01_concepts/network.html#the-protocol","02_core_ledger/01_concepts/network.html#type-of-queries","02_core_ledger/01_concepts/network.html#peer-to-peer","02_core_ledger/01_concepts/network.html#multilayered-topology","02_core_ledger/01_concepts/network.html#gossiping","02_core_ledger/01_concepts/network.html#subscription-mechanism","02_core_ledger/01_concepts/network.html#security-and-countermeasures","02_core_ledger/01_concepts/network.html#policy","02_core_ledger/01_concepts/node.html#node-organization","02_core_ledger/01_concepts/node.html#secure-enclave","02_core_ledger/01_concepts/node.html#network","02_core_ledger/01_concepts/node.html#intercommunication-api-grpc","02_core_ledger/01_concepts/node.html#public-api-rest","02_core_ledger/01_concepts/node.html#control-api-rest","02_core_ledger/01_concepts/stake.html#stake","02_core_ledger/01_concepts/stake.html#stake-in-the-account-model","02_core_ledger/01_concepts/stake.html#stake-in-the-utxo-model","02_core_ledger/01_concepts/stake.html#stake-pool","02_core_ledger/01_concepts/stake.html#stake-delegation","02_core_ledger/02_quickstart/index.html#quickstart","02_core_ledger/02_quickstart/index.html#as-a-passive-node-in-an-existing-network","02_core_ledger/02_quickstart/index.html#as-a-node-generating-blocks-in-an-existing-network","02_core_ledger/02_quickstart/index.html#creating-your-own-network","02_core_ledger/02_quickstart/01_command_line.html#command-line-tools","02_core_ledger/02_quickstart/01_command_line.html#installation","02_core_ledger/02_quickstart/01_command_line.html#from-a-release","02_core_ledger/02_quickstart/01_command_line.html#from-source","02_core_ledger/02_quickstart/01_command_line.html#help-and-auto-completion","02_core_ledger/02_quickstart/02_passive_node.html#starting-a-passive-node","02_core_ledger/02_quickstart/02_passive_node.html#the-node-configuration","02_core_ledger/02_quickstart/02_passive_node.html#note","02_core_ledger/02_quickstart/02_passive_node.html#starting-the-node","02_core_ledger/02_quickstart/03_rest_api.html#rest-api","02_core_ledger/02_quickstart/04_explorer.html#explorer-mode","02_core_ledger/02_quickstart/04_explorer.html#configuration","02_core_ledger/02_quickstart/04_explorer.html#cors","02_core_ledger/02_quickstart/04_explorer.html#api","02_core_ledger/02_quickstart/05_leader_candidate.html#how-to-start-a-node-as-a-leader-candidate","02_core_ledger/02_quickstart/05_leader_candidate.html#gathering-data","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-genesis-blockchain","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-bft-blockchain","02_core_ledger/03_configuration/index.html#configuration","02_core_ledger/03_configuration/index.html#node-configuration","02_core_ledger/03_configuration/index.html#advanced","02_core_ledger/03_configuration/index.html#rewards-report","02_core_ledger/03_configuration/index.html#handling-of-time-consuming-transactions","02_core_ledger/03_configuration/leadership.html#leadership","02_core_ledger/03_configuration/logging.html#logging","02_core_ledger/03_configuration/logging.html#example","02_core_ledger/03_configuration/logging.html#output-to-stdout","02_core_ledger/03_configuration/logging.html#output-to-a-file","02_core_ledger/03_configuration/mempool.html#mempool","02_core_ledger/03_configuration/mempool.html#persistent-logs","02_core_ledger/03_configuration/network.html#node-network","02_core_ledger/03_configuration/network.html#rest-interface-configuration","02_core_ledger/03_configuration/network.html#configuring-tls","02_core_ledger/03_configuration/network.html#p2p-configuration","02_core_ledger/03_configuration/network.html#the-trusted-peers","02_core_ledger/03_configuration/network.html#layers","02_core_ledger/03_configuration/network.html#setting-the-public_id","02_core_ledger/03_configuration/network.html#topics_of_interest","02_core_ledger/03_configuration/prometheus.html#prometheus","02_core_ledger/03_configuration/prometheus.html#prerequisites","02_core_ledger/03_configuration/prometheus.html#usage","02_core_ledger/04_jcli/index.html#jcli","02_core_ledger/04_jcli/address.html#address","02_core_ledger/04_jcli/address.html#display-address-info","02_core_ledger/04_jcli/address.html#creating-an-address","02_core_ledger/04_jcli/address.html#address-for-utxo","02_core_ledger/04_jcli/address.html#address-for-account","02_core_ledger/04_jcli/address.html#changing-the-address-prefix","02_core_ledger/04_jcli/certificate.html#certificate","02_core_ledger/04_jcli/certificate.html#building-stake-pool-registration-certificate","02_core_ledger/04_jcli/certificate.html#retiring-a-stake-pool","02_core_ledger/04_jcli/certificate.html#building-stake-pool-delegation-certificate","02_core_ledger/04_jcli/certificate.html#building-update-proposal-certificate","02_core_ledger/04_jcli/certificate.html#building-vote-cast-certificate","02_core_ledger/04_jcli/certificate.html#public-vote-cast","02_core_ledger/04_jcli/certificate.html#private-vote-cast","02_core_ledger/04_jcli/genesis.html#genesis","02_core_ledger/04_jcli/genesis.html#usage","02_core_ledger/04_jcli/genesis.html#subcommands","02_core_ledger/04_jcli/genesis.html#examples","02_core_ledger/04_jcli/genesis.html#encode-a-genesis-file","02_core_ledger/04_jcli/genesis.html#get-the-hash-of-an-encoded-genesis-file","02_core_ledger/04_jcli/key.html#cryptographic-keys","02_core_ledger/04_jcli/key.html#signing-data","02_core_ledger/04_jcli/key.html#verifying-signed-data","02_core_ledger/04_jcli/rest.html#rest","02_core_ledger/04_jcli/rest.html#conventions","02_core_ledger/04_jcli/rest.html#node-stats","02_core_ledger/04_jcli/rest.html#get-utxo","02_core_ledger/04_jcli/rest.html#post-transaction","02_core_ledger/04_jcli/rest.html#get-message-log","02_core_ledger/04_jcli/rest.html#blockchain-tip","02_core_ledger/04_jcli/rest.html#get-block","02_core_ledger/04_jcli/rest.html#get-next-block-id","02_core_ledger/04_jcli/rest.html#get-account-state","02_core_ledger/04_jcli/rest.html#node-settings","02_core_ledger/04_jcli/rest.html#node-shutdown","02_core_ledger/04_jcli/rest.html#get-leaders","02_core_ledger/04_jcli/rest.html#register-leader","02_core_ledger/04_jcli/rest.html#delete-leader","02_core_ledger/04_jcli/rest.html#get-leadership-logs","02_core_ledger/04_jcli/rest.html#get-stake-pools","02_core_ledger/04_jcli/rest.html#get-stake-distribution","02_core_ledger/04_jcli/rest.html#network-stats","02_core_ledger/04_jcli/rest.html#get-stake-pool-details","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-a-specific-epoch","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-some-epochs","02_core_ledger/04_jcli/rest.html#get-voting-committee-members","02_core_ledger/04_jcli/rest.html#get-active-voting-plans-and-proposals","02_core_ledger/04_jcli/transaction.html#transaction","02_core_ledger/04_jcli/transaction.html#transaction-info","02_core_ledger/04_jcli/transaction.html#examples","02_core_ledger/04_jcli/transaction.html#input-utxo","02_core_ledger/04_jcli/transaction.html#destination-address","02_core_ledger/04_jcli/transaction.html#create-a-staging-area","02_core_ledger/04_jcli/transaction.html#add-input","02_core_ledger/04_jcli/transaction.html#example---utxo-address-as-input","02_core_ledger/04_jcli/transaction.html#example---account-address-as-input","02_core_ledger/04_jcli/transaction.html#add-output","02_core_ledger/04_jcli/transaction.html#add-fee-and-change-address","02_core_ledger/04_jcli/transaction.html#sign-the-transaction","02_core_ledger/04_jcli/transaction.html#make-witness","02_core_ledger/04_jcli/transaction.html#add-witness","02_core_ledger/04_jcli/transaction.html#send-the-transaction","02_core_ledger/04_jcli/transaction.html#checking-if-the-transaction-was-accepted","02_core_ledger/04_jcli/vote.html#voting","02_core_ledger/04_jcli/vote.html#creating-committee-keys","02_core_ledger/04_jcli/vote.html#private","02_core_ledger/04_jcli/vote.html#creating-a-vote-plan","02_core_ledger/04_jcli/vote.html#casting-votes","02_core_ledger/04_jcli/vote.html#tallying","02_core_ledger/04_jcli/vote.html#public-vote-plan","02_core_ledger/04_jcli/vote.html#private-vote-plan","02_core_ledger/05_stake_pool/index.html#staking-with-jörmungandr","02_core_ledger/05_stake_pool/delegating_stake.html#delegating-your-stake","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-create-the-delegation-certificate","02_core_ledger/05_stake_pool/delegating_stake.html#for-own-account","02_core_ledger/05_stake_pool/delegating_stake.html#for-any-account","02_core_ledger/05_stake_pool/delegating_stake.html#submitting-to-a-node","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-sign-your-delegation-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#registering-a-stake-pool","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-primitives","02_core_ledger/05_stake_pool/registering_stake_pool.html#vrf-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#kes-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#choosing-the--tax--parameters","02_core_ledger/05_stake_pool/registering_stake_pool.html#so-how-does-this-works","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-options-to-set","02_core_ledger/05_stake_pool/registering_stake_pool.html#creating-a-stake-pool-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#submitting-to-a-node","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retiring-a-stake-pool","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retrieve-stake-pool-id","02_core_ledger/05_stake_pool/retiring_stake_pool.html#creating-a-retirement-certificate","02_core_ledger/05_stake_pool/retiring_stake_pool.html#submitting-to-a-node","02_core_ledger/06_advanced/index.html#advanced","02_core_ledger/06_advanced/01_the_genesis_block.html#genesis-file","02_core_ledger/06_advanced/01_the_genesis_block.html#blockchain_configuration-options","02_core_ledger/06_advanced/01_the_genesis_block.html#initial-options","02_core_ledger/06_advanced/01_the_genesis_block.html#fund-and-legacy_fund-format","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-a-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#how-does-it-work","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#example-of-genesis-file","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#creating-the-block-0","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-the-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#step-by-step-to-start-the-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#script","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-a-genesis-blockchain","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#the-initial-certificates","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#stake-pool-registration","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#delegating-stake","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-the-node","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#test-script","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#how-vote-plans-vote-fragments-and-the-blockchain-transaction-work-and-inter-relate","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#sasha-prokhorenko","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#nicolo-padovani","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#felipe-rosa","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#joaquin-rosales","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#proposalchain_proposal_id","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefano-cunego","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#conor-gannon","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#alex-pozhylenkov","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#spending-counters","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#cameron-mcloughlin","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#dariusz-kijania","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#ognjen-dokmanovic","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefan-rasevic","02_core_ledger/07_specs/index.html#jormungandr-specifications","02_core_ledger/07_specs/migration.html#migration","02_core_ledger/07_specs/migration.html#vocabulary","02_core_ledger/07_specs/migration.html#description","02_core_ledger/07_specs/migration.html#mechanisms","02_core_ledger/07_specs/migration.html#transaction","02_core_ledger/07_specs/migration.html#mainnet-testnet-tests","02_core_ledger/07_specs/migration.html#advantages","02_core_ledger/07_specs/migration.html#historical-data","02_core_ledger/07_specs/network.html#network","02_core_ledger/07_specs/network.html#introduction","02_core_ledger/07_specs/network.html#design-decisions-guidelines","02_core_ledger/07_specs/network.html#node-to-node-communication","02_core_ledger/07_specs/network.html#general-functionality","02_core_ledger/07_specs/network.html#design","02_core_ledger/07_specs/network.html#node-to-client-communication","02_core_ledger/07_specs/network.html#peer-to-peer-network","02_core_ledger/07_specs/network.html#definitions","02_core_ledger/07_specs/network.html#functionalities","02_core_ledger/07_specs/network.html#messages","02_core_ledger/07_specs/network.html#communications-design","02_core_ledger/07_specs/network.html#adversarial-models-considered","02_core_ledger/07_specs/network.html#adversarial-forks","02_core_ledger/07_specs/network.html#flooding-attack","02_core_ledger/07_specs/network.html#anonymity-against-distributed-adversaries","02_core_ledger/07_specs/network.html#man-in-the-middle","02_core_ledger/07_specs/network.html#in-relation-to-ouroboros-genesis","02_core_ledger/08_testing/index.html#testing","02_core_ledger/08_testing/automation.html#jormungandr-automation","02_core_ledger/08_testing/automation.html#build","02_core_ledger/08_testing/automation.html#jcli-testing-api","02_core_ledger/08_testing/automation.html#jormungandr-testing-api","02_core_ledger/08_testing/automation.html#testing","02_core_ledger/08_testing/hersir.html#hersir","02_core_ledger/08_testing/hersir.html#build--install","02_core_ledger/08_testing/hersir.html#quick-start","02_core_ledger/08_testing/hersir.html#configuration","02_core_ledger/08_testing/hersir.html#full-list-of-available-parameters","02_core_ledger/08_testing/hersir.html#full-list-of-available-commands","02_core_ledger/08_testing/integration_tests.html#jormungandr-integration-tests","02_core_ledger/08_testing/integration_tests.html#architecture-of-tests","02_core_ledger/08_testing/integration_tests.html#quick-start","02_core_ledger/08_testing/integration_tests.html#prerequisites","02_core_ledger/08_testing/integration_tests.html#start-tests","02_core_ledger/08_testing/integration_tests.html#tests-categories","02_core_ledger/08_testing/integration_tests.html#how-to-run-all-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-jcli-only-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-endurance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-endurance-tests","02_core_ledger/08_testing/integration_tests.html#frequency","02_core_ledger/08_testing/loki.html#loki","02_core_ledger/08_testing/loki.html#build--install","02_core_ledger/08_testing/loki.html#quick-start","02_core_ledger/08_testing/loki.html#other-possible-operations","02_core_ledger/08_testing/loki.html#api","02_core_ledger/08_testing/mjolnir.html#mjolnir","02_core_ledger/08_testing/mjolnir.html#build--install","02_core_ledger/08_testing/mjolnir.html#quick-start","02_core_ledger/08_testing/mjolnir.html#cli","02_core_ledger/08_testing/mjolnir.html#api","02_core_ledger/08_testing/mjolnir.html#full-list-of-available-commands","02_core_ledger/08_testing/thor.html#thor","02_core_ledger/08_testing/thor.html#build--install","02_core_ledger/08_testing/thor.html#quick-start","02_core_ledger/08_testing/thor.html#cli","02_core_ledger/08_testing/thor.html#api","02_core_ledger/08_testing/thor.html#configuration","02_core_ledger/08_testing/thor.html#full-list-of-available-commands","02_core_ledger/09_internal_design/index.html#internal-design","02_core_ledger/09_internal_design/index.html#tasks","02_core_ledger/09_internal_design/index.html#maintaining-the-blockchains-state","02_core_ledger/09_internal_design/index.html#from-the-block-0","02_core_ledger/09_internal_design/index.html#for-a-block","02_core_ledger/09_internal_design/index.html#epoch-transition","02_core_ledger/09_internal_design/01_auto-start.html#automatic-deployment-of-the-voting-blockchain","02_core_ledger/09_internal_design/01_auto-start.html#overview","02_core_ledger/09_internal_design/01_auto-start.html#configuration","02_core_ledger/09_internal_design/02_permissionless_auth.html#permissionless-auth","03_core_testing/index.html#catalyst-testing-user-guide","03_core_testing/iapyx/index.html#iapyx","03_core_testing/iapyx/iapyx.html#iapyx","03_core_testing/iapyx/iapyx.html#build--install","03_core_testing/iapyx/iapyx.html#quick-start","03_core_testing/iapyx/iapyx.html#cli","03_core_testing/iapyx/iapyx.html#api","03_core_testing/iapyx/iapyx.html#configuration","03_core_testing/iapyx/iapyx.html#full-list-of-available-commands","03_core_testing/iapyx/load.html#iapyx-load","03_core_testing/iapyx/load.html#build--install","03_core_testing/iapyx/load.html#quick-start","03_core_testing/iapyx/load.html#cli","03_core_testing/iapyx/load.html#api","03_core_testing/iapyx/load.html#full-list-of-available-commands","03_core_testing/integration-tests/index.html#integration-tests","03_core_testing/integration-tests/index.html#architecture-of-tests","03_core_testing/integration-tests/index.html#quick-start","03_core_testing/integration-tests/index.html#prerequisites","03_core_testing/integration-tests/index.html#start-tests","03_core_testing/integration-tests/index.html#tests-categories","03_core_testing/integration-tests/index.html#how-to-run-all-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-testnet-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-load-tests","03_core_testing/integration-tests/index.html#how-to-run-network-endurance-tests","03_core_testing/integration-tests/index.html#frequency","03_core_testing/registration-service/index.html#registration-service","03_core_testing/registration-service/index.html#build","03_core_testing/registration-service/index.html#quick-start","03_core_testing/registration-service/index.html#clients","03_core_testing/registration-service/index.html#cli","03_core_testing/registration-service/index.html#api","03_core_testing/registration-service/cli.html#registration-cli","03_core_testing/registration-service/cli.html#build--install","03_core_testing/registration-service/cli.html#quick-start","03_core_testing/registration-service/cli.html#full-list-of-available-commands","03_core_testing/registration-service/configuration.html#configuration","03_core_testing/registration-verify-service/index.html#registration-service","03_core_testing/registration-verify-service/index.html#build","03_core_testing/registration-verify-service/index.html#quick-start","03_core_testing/registration-verify-service/index.html#clients","03_core_testing/registration-verify-service/index.html#cli","03_core_testing/registration-verify-service/index.html#api","03_core_testing/registration-verify-service/cli.html#registration-verify-cli","03_core_testing/registration-verify-service/cli.html#build--install","03_core_testing/registration-verify-service/cli.html#quick-start","03_core_testing/registration-verify-service/cli.html#full-list-of-available-commands","03_core_testing/registration-verify-service/configuration.html#configuration","03_core_testing/snapshot-service/index.html#snapshot-trigger-service","03_core_testing/snapshot-service/index.html#build","03_core_testing/snapshot-service/index.html#quick-start","03_core_testing/snapshot-service/index.html#usage","03_core_testing/snapshot-service/index.html#clients","03_core_testing/snapshot-service/index.html#cli","03_core_testing/snapshot-service/index.html#api","03_core_testing/snapshot-service/cli.html#registration-cli","03_core_testing/snapshot-service/cli.html#build--install","03_core_testing/snapshot-service/cli.html#quick-start","03_core_testing/snapshot-service/cli.html#full-list-of-available-commands","03_core_testing/snapshot-service/configuration.html#configuration","03_core_testing/snapshot-wormhole/index.html#snapshot-wormhole","03_core_testing/snapshot-wormhole/index.html#build","03_core_testing/snapshot-wormhole/index.html#run","03_core_testing/snapshot-wormhole/index.html#quick-start","03_core_testing/snapshot-wormhole/index.html#run-modes","03_core_testing/snapshot-wormhole/configuration.html#configuration","03_core_testing/snapshot-wormhole/configuration.html#snapshot-service","03_core_testing/snapshot-wormhole/configuration.html#servicing-station-service","03_core_testing/snapshot-wormhole/configuration.html#parameters","03_core_testing/valgrind/index.html#valgrind","03_core_testing/valgrind/index.html#build","03_core_testing/valgrind/index.html#quick-start","03_core_testing/valgrind/index.html#client","03_core_testing/valgrind/configuration.html#configuration","03_core_testing/vitup/index.html#vitup","03_core_testing/vitup/index.html#build","03_core_testing/vitup/index.html#quick-start","03_core_testing/vitup/configuration.html#configuration","03_core_testing/vitup/configuration.html#serdedefault","03_core_testing/vitup/data_generation/index.html#data-generation","03_core_testing/vitup/data_generation/reset.html#configuration","03_core_testing/vitup/data_generation/reset.html#initials","03_core_testing/vitup/data_generation/reset.html#snapshot","03_core_testing/vitup/data_generation/reset.html#block0","03_core_testing/vitup/data_generation/reset.html#snapshot-1","03_core_testing/vitup/data_generation/reset.html#vote-plan","03_core_testing/vitup/data_generation/reset.html#vote-time","03_core_testing/vitup/data_generation/reset.html#example","03_core_testing/vitup/data_generation/reset.html#data","03_core_testing/vitup/data_generation/reset.html#current-fund","03_core_testing/vitup/data_generation/reset.html#next-funds","03_core_testing/vitup/data_generation/reset.html#service","03_core_testing/vitup/data_generation/reset.html#version","03_core_testing/vitup/data_generation/reset.html#https","03_core_testing/vitup/data_generation/reset.html#full-example","03_core_testing/vitup/data_generation/snapshot.html#configuration","03_core_testing/vitup/data_generation/snapshot.html#example","03_core_testing/vitup/data_generation/snapshot.html#parameters","03_core_testing/vitup/data_generation/snapshot.html#content","03_core_testing/vitup/data_generation/snapshot.html#actor","03_core_testing/vitup/data_generation.html#data-generation","03_core_testing/vitup/mock.html#mock","03_core_testing/vitup/mock.html#configuration","03_core_testing/vitup/mock.html#start","03_core_testing/vitup/mock.html#admin-rest-commands","03_core_testing/vitup/mock.html#admin-cli","03_core_testing/vitup/mock_farm.html#mock-farm","03_core_testing/vitup/mock_farm.html#configuration","03_core_testing/vitup/mock_farm.html#start","03_core_testing/vitup/mock_farm.html#documentation","03_core_testing/vitup/run_modes.html#configuration-modes","03_core_testing/vitup/run_modes.html#run-modes","03_core_testing/vitup/run_modes.html#endless-mode","03_core_testing/vitup/run_modes.html#service-mode","03_core_testing/vitup/run_modes.html#admin-operations","03_core_testing/vitup/run_modes.html#how-to-send-operations","03_core_testing/vitup/run_modes.html#check-environment-status","03_core_testing/vitup/run_modes.html#start-environment","03_core_testing/vitup/run_modes.html#list-files","03_core_testing/vitup/run_modes.html#get-files","03_core_testing/vitup/run_modes.html#interactive-mode","04_core_vitss/index.html#core-vit-servicing-station","04_core_vitss/testing.html#vit-servicing-station-tests","04_core_vitss/testing.html#quick-start","04_core_vitss/testing.html#prerequisites","04_core_vitss/testing.html#start-tests","04_core_vitss/testing.html#tests-categories","04_core_vitss/testing.html#how-to-run-all-functional-tests","04_core_vitss/testing.html#how-to-run-performance-tests","04_core_vitss/testing.html#how-to-run-endurance-tests","04_core_vitss/testing.html#frequency","05_unified_platform/index.html#unified-platform","05_unified_platform/01_catalyst-cardano-bridge/index.html#overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#issues-with-the-previous-systems","05_unified_platform/01_catalyst-cardano-bridge/index.html#the-solution","05_unified_platform/01_catalyst-cardano-bridge/index.html#architecture-overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#architectural-diagram","05_unified_platform/01_catalyst-cardano-bridge/index.html#integration-to-the-catalyst-unified-backend","05_unified_platform/01_catalyst-cardano-bridge/01_cardano_nodes.html#cardano-nodes","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/index.html#bridge-pipeline","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/01_block_reader.html#block-reader","05_unified_platform/01_catalyst-cardano-bridge/03_rest_http_service.html#rest-http-service","05_unified_platform/01_catalyst-cardano-bridge/04_event_stream.html#event-stream","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#database","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#servers","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#high-level-data-design","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#registrations-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#current-voter-registration","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#all-current-voter-registrations","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-ada-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#all-current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-balances-for-a-period","05_unified_platform/01_catalyst-cardano-bridge/05_database/03_transaction_state.html#transaction-state-database","06_rust_api/index.html#rust-api","06_rust_api/rust_api.html#rust-api-documentation-and-packages","06_rust_api/rust_api.html#blockchain","06_rust_api/rust_api.html#db-sync-explorer","06_rust_api/rust_api.html#explorer---explorer-service-for-jormungandr","06_rust_api/rust_api.html#integration-tests","06_rust_api/rust_api.html#jormungandr---midgard-serpent","06_rust_api/rust_api.html#jormungandrwallet","06_rust_api/rust_api.html#mjolnir","06_rust_api/rust_api.html#settings","06_rust_api/rust_api.html#sparse-array","06_rust_api/rust_api.html#vit-servicing-station-cli","06_rust_api/rust_api.html#vit-servicing-station-server","06_rust_api/rust_api.html#wallet-wasm-js---wallet-functionalities-to-interact-with-jörmungandr--this-package-profiles-all-that-is-needed-to-have-an-healthy-and-secure-interaction-with-jörmungandr-blockchain-technology","06_rust_api/rust_style_guide.html#-rust-style-guide","06_rust_api/rust_style_guide.html#toolchain","06_rust_api/rust_style_guide.html#basic-rules","06_rust_api/rust_style_guide.html#creating-a-new-crate","06_rust_api/rust_style_guide.html#exceptions-for-clippy","06_rust_api/rust_style_guide.html#guidelines","06_rust_api/rust_style_guide.html#prefer-references-over-generics","06_rust_api/rust_style_guide.html#abbreviations-and-naming-things","06_rust_api/rust_style_guide.html#pay-attention-to-the-public-api-of-your-crate","06_rust_api/rust_style_guide.html#type-safety","06_rust_api/rust_style_guide.html#use-newtypes-aka-microtypes","06_rust_api/rust_style_guide.html#dont-over-abstract","06_rust_api/rust_style_guide.html#unsafe-code","06_rust_api/rust_style_guide.html#docs","06_rust_api/rust_style_guide.html#doctests","06_rust_api/rust_style_guide.html#write-code-as-if-its-going-to-be-in-a-web-server","06_rust_api/rust_style_guide.html#error-handling","06_rust_api/rust_style_guide.html#handling-expected-errors","07_web_api/index.html#web-api","07_web_api/dbsync-explorer.html#dbsync-explorer-httprest-api-v1","07_web_api/vit-servicing-station-v0.html#vit-servicing-station-httprest-api-v0","07_web_api/vit-testing-mock-farm-v0.html#vit-testing-mock-farm-httprest-api-v0","07_web_api/vit-testing-mock-v0.html#vit-testing-mock-httprest-api-v0","07_web_api/vote-ledger-v0.html#vote-ledger-httprest-api-v0","07_web_api/vote-ledger-v1.html#vote-ledger-httprest-api-v1","97_CONTRIBUTING.html#contributing-to-catalyst-core","97_CONTRIBUTING.html#table-of-contents","97_CONTRIBUTING.html#code-of-conduct","97_CONTRIBUTING.html#i-have-a-question","97_CONTRIBUTING.html#i-want-to-contribute","97_CONTRIBUTING.html#legal-notice","97_CONTRIBUTING.html#reporting-bugs","97_CONTRIBUTING.html#suggesting-enhancements","97_CONTRIBUTING.html#your-first-code-contribution","97_CONTRIBUTING.html#improving-the-documentation","97_CONTRIBUTING.html#styleguides","97_CONTRIBUTING.html#commit-messages","98_CODE_OF_CONDUCT.html#contributor-covenant-code-of-conduct","98_CODE_OF_CONDUCT.html#our-pledge","98_CODE_OF_CONDUCT.html#our-standards","98_CODE_OF_CONDUCT.html#enforcement-responsibilities","98_CODE_OF_CONDUCT.html#scope","98_CODE_OF_CONDUCT.html#enforcement","98_CODE_OF_CONDUCT.html#enforcement-guidelines","98_CODE_OF_CONDUCT.html#1-correction","98_CODE_OF_CONDUCT.html#2-warning","98_CODE_OF_CONDUCT.html#3-temporary-ban","98_CODE_OF_CONDUCT.html#4-permanent-ban","98_CODE_OF_CONDUCT.html#attribution","99_example_enhanced_markup.html#example-enhanced-markup","99_example_enhanced_markup.html#example-rendered-diagrams","ZZ_suffix.html#suffix"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":31,"breadcrumbs":7,"title":1},"100":{"body":16,"breadcrumbs":7,"title":3},"101":{"body":11,"breadcrumbs":8,"title":4},"102":{"body":64,"breadcrumbs":7,"title":2},"103":{"body":50,"breadcrumbs":7,"title":2},"104":{"body":46,"breadcrumbs":8,"title":3},"105":{"body":9,"breadcrumbs":5,"title":1},"106":{"body":61,"breadcrumbs":5,"title":1},"107":{"body":162,"breadcrumbs":6,"title":2},"108":{"body":49,"breadcrumbs":5,"title":1},"109":{"body":44,"breadcrumbs":6,"title":2},"11":{"body":91,"breadcrumbs":7,"title":1},"110":{"body":110,"breadcrumbs":6,"title":2},"111":{"body":19,"breadcrumbs":6,"title":2},"112":{"body":25,"breadcrumbs":5,"title":1},"113":{"body":49,"breadcrumbs":7,"title":3},"114":{"body":66,"breadcrumbs":6,"title":2},"115":{"body":204,"breadcrumbs":6,"title":2},"116":{"body":15,"breadcrumbs":6,"title":2},"117":{"body":30,"breadcrumbs":5,"title":1},"118":{"body":48,"breadcrumbs":6,"title":2},"119":{"body":23,"breadcrumbs":6,"title":2},"12":{"body":26,"breadcrumbs":7,"title":1},"120":{"body":91,"breadcrumbs":6,"title":2},"121":{"body":33,"breadcrumbs":6,"title":2},"122":{"body":128,"breadcrumbs":6,"title":2},"123":{"body":76,"breadcrumbs":6,"title":2},"124":{"body":83,"breadcrumbs":7,"title":3},"125":{"body":90,"breadcrumbs":8,"title":4},"126":{"body":96,"breadcrumbs":7,"title":3},"127":{"body":31,"breadcrumbs":7,"title":3},"128":{"body":61,"breadcrumbs":8,"title":4},"129":{"body":98,"breadcrumbs":5,"title":1},"13":{"body":21,"breadcrumbs":7,"title":1},"130":{"body":296,"breadcrumbs":6,"title":2},"131":{"body":38,"breadcrumbs":5,"title":1},"132":{"body":16,"breadcrumbs":6,"title":2},"133":{"body":2,"breadcrumbs":6,"title":2},"134":{"body":5,"breadcrumbs":7,"title":3},"135":{"body":18,"breadcrumbs":6,"title":2},"136":{"body":9,"breadcrumbs":8,"title":4},"137":{"body":13,"breadcrumbs":8,"title":4},"138":{"body":14,"breadcrumbs":6,"title":2},"139":{"body":86,"breadcrumbs":8,"title":4},"14":{"body":69,"breadcrumbs":7,"title":1},"140":{"body":0,"breadcrumbs":6,"title":2},"141":{"body":139,"breadcrumbs":6,"title":2},"142":{"body":7,"breadcrumbs":6,"title":2},"143":{"body":31,"breadcrumbs":6,"title":2},"144":{"body":65,"breadcrumbs":7,"title":3},"145":{"body":17,"breadcrumbs":5,"title":1},"146":{"body":0,"breadcrumbs":7,"title":3},"147":{"body":143,"breadcrumbs":5,"title":1},"148":{"body":61,"breadcrumbs":7,"title":3},"149":{"body":171,"breadcrumbs":6,"title":2},"15":{"body":65,"breadcrumbs":7,"title":1},"150":{"body":0,"breadcrumbs":5,"title":1},"151":{"body":165,"breadcrumbs":7,"title":3},"152":{"body":141,"breadcrumbs":7,"title":3},"153":{"body":17,"breadcrumbs":8,"title":2},"154":{"body":0,"breadcrumbs":8,"title":2},"155":{"body":10,"breadcrumbs":9,"title":3},"156":{"body":60,"breadcrumbs":7,"title":1},"157":{"body":28,"breadcrumbs":7,"title":1},"158":{"body":65,"breadcrumbs":8,"title":2},"159":{"body":46,"breadcrumbs":9,"title":3},"16":{"body":29,"breadcrumbs":8,"title":2},"160":{"body":58,"breadcrumbs":10,"title":3},"161":{"body":0,"breadcrumbs":8,"title":1},"162":{"body":33,"breadcrumbs":10,"title":3},"163":{"body":27,"breadcrumbs":10,"title":3},"164":{"body":46,"breadcrumbs":10,"title":3},"165":{"body":116,"breadcrumbs":8,"title":1},"166":{"body":61,"breadcrumbs":9,"title":2},"167":{"body":59,"breadcrumbs":11,"title":4},"168":{"body":70,"breadcrumbs":9,"title":2},"169":{"body":32,"breadcrumbs":10,"title":3},"17":{"body":35,"breadcrumbs":7,"title":1},"170":{"body":11,"breadcrumbs":11,"title":4},"171":{"body":43,"breadcrumbs":10,"title":3},"172":{"body":92,"breadcrumbs":9,"title":2},"173":{"body":25,"breadcrumbs":5,"title":1},"174":{"body":746,"breadcrumbs":7,"title":2},"175":{"body":101,"breadcrumbs":7,"title":2},"176":{"body":60,"breadcrumbs":7,"title":2},"177":{"body":24,"breadcrumbs":8,"title":3},"178":{"body":22,"breadcrumbs":9,"title":3},"179":{"body":39,"breadcrumbs":7,"title":1},"18":{"body":54,"breadcrumbs":8,"title":2},"180":{"body":54,"breadcrumbs":9,"title":3},"181":{"body":19,"breadcrumbs":9,"title":3},"182":{"body":42,"breadcrumbs":8,"title":2},"183":{"body":90,"breadcrumbs":11,"title":5},"184":{"body":15,"breadcrumbs":7,"title":1},"185":{"body":78,"breadcrumbs":9,"title":3},"186":{"body":32,"breadcrumbs":8,"title":2},"187":{"body":25,"breadcrumbs":9,"title":3},"188":{"body":92,"breadcrumbs":8,"title":2},"189":{"body":55,"breadcrumbs":8,"title":2},"19":{"body":28,"breadcrumbs":8,"title":2},"190":{"body":18,"breadcrumbs":8,"title":2},"191":{"body":194,"breadcrumbs":21,"title":9},"192":{"body":0,"breadcrumbs":14,"title":2},"193":{"body":0,"breadcrumbs":14,"title":2},"194":{"body":0,"breadcrumbs":14,"title":2},"195":{"body":0,"breadcrumbs":14,"title":2},"196":{"body":81,"breadcrumbs":13,"title":1},"197":{"body":0,"breadcrumbs":14,"title":2},"198":{"body":0,"breadcrumbs":14,"title":2},"199":{"body":0,"breadcrumbs":14,"title":2},"2":{"body":5,"breadcrumbs":3,"title":2},"20":{"body":87,"breadcrumbs":8,"title":2},"200":{"body":110,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":0,"breadcrumbs":14,"title":2},"203":{"body":0,"breadcrumbs":14,"title":2},"204":{"body":5,"breadcrumbs":14,"title":2},"205":{"body":13,"breadcrumbs":8,"title":2},"206":{"body":12,"breadcrumbs":6,"title":1},"207":{"body":5,"breadcrumbs":6,"title":1},"208":{"body":154,"breadcrumbs":6,"title":1},"209":{"body":123,"breadcrumbs":6,"title":1},"21":{"body":42,"breadcrumbs":7,"title":1},"210":{"body":58,"breadcrumbs":6,"title":1},"211":{"body":92,"breadcrumbs":8,"title":3},"212":{"body":42,"breadcrumbs":6,"title":1},"213":{"body":123,"breadcrumbs":7,"title":2},"214":{"body":3,"breadcrumbs":6,"title":1},"215":{"body":19,"breadcrumbs":6,"title":1},"216":{"body":53,"breadcrumbs":8,"title":3},"217":{"body":16,"breadcrumbs":8,"title":3},"218":{"body":32,"breadcrumbs":7,"title":2},"219":{"body":647,"breadcrumbs":6,"title":1},"22":{"body":45,"breadcrumbs":8,"title":2},"220":{"body":30,"breadcrumbs":8,"title":3},"221":{"body":18,"breadcrumbs":8,"title":3},"222":{"body":29,"breadcrumbs":6,"title":1},"223":{"body":39,"breadcrumbs":6,"title":1},"224":{"body":26,"breadcrumbs":6,"title":1},"225":{"body":326,"breadcrumbs":7,"title":2},"226":{"body":0,"breadcrumbs":8,"title":3},"227":{"body":166,"breadcrumbs":7,"title":2},"228":{"body":100,"breadcrumbs":7,"title":2},"229":{"body":48,"breadcrumbs":9,"title":4},"23":{"body":80,"breadcrumbs":8,"title":2},"230":{"body":42,"breadcrumbs":7,"title":2},"231":{"body":49,"breadcrumbs":8,"title":3},"232":{"body":69,"breadcrumbs":5,"title":1},"233":{"body":5,"breadcrumbs":7,"title":2},"234":{"body":13,"breadcrumbs":6,"title":1},"235":{"body":28,"breadcrumbs":8,"title":3},"236":{"body":72,"breadcrumbs":8,"title":3},"237":{"body":107,"breadcrumbs":6,"title":1},"238":{"body":12,"breadcrumbs":5,"title":1},"239":{"body":15,"breadcrumbs":6,"title":2},"24":{"body":162,"breadcrumbs":7,"title":1},"240":{"body":15,"breadcrumbs":6,"title":2},"241":{"body":54,"breadcrumbs":5,"title":1},"242":{"body":529,"breadcrumbs":8,"title":4},"243":{"body":36,"breadcrumbs":8,"title":4},"244":{"body":22,"breadcrumbs":9,"title":3},"245":{"body":38,"breadcrumbs":8,"title":2},"246":{"body":0,"breadcrumbs":8,"title":2},"247":{"body":8,"breadcrumbs":7,"title":1},"248":{"body":12,"breadcrumbs":8,"title":2},"249":{"body":19,"breadcrumbs":8,"title":2},"25":{"body":0,"breadcrumbs":8,"title":2},"250":{"body":9,"breadcrumbs":9,"title":3},"251":{"body":7,"breadcrumbs":10,"title":4},"252":{"body":7,"breadcrumbs":11,"title":5},"253":{"body":10,"breadcrumbs":11,"title":5},"254":{"body":10,"breadcrumbs":11,"title":5},"255":{"body":9,"breadcrumbs":10,"title":4},"256":{"body":10,"breadcrumbs":10,"title":4},"257":{"body":10,"breadcrumbs":10,"title":4},"258":{"body":16,"breadcrumbs":7,"title":1},"259":{"body":8,"breadcrumbs":5,"title":1},"26":{"body":15,"breadcrumbs":8,"title":2},"260":{"body":15,"breadcrumbs":6,"title":2},"261":{"body":88,"breadcrumbs":6,"title":2},"262":{"body":24,"breadcrumbs":6,"title":2},"263":{"body":38,"breadcrumbs":5,"title":1},"264":{"body":8,"breadcrumbs":5,"title":1},"265":{"body":15,"breadcrumbs":6,"title":2},"266":{"body":0,"breadcrumbs":6,"title":2},"267":{"body":107,"breadcrumbs":5,"title":1},"268":{"body":99,"breadcrumbs":5,"title":1},"269":{"body":85,"breadcrumbs":8,"title":4},"27":{"body":19,"breadcrumbs":7,"title":1},"270":{"body":16,"breadcrumbs":5,"title":1},"271":{"body":15,"breadcrumbs":6,"title":2},"272":{"body":0,"breadcrumbs":6,"title":2},"273":{"body":66,"breadcrumbs":5,"title":1},"274":{"body":32,"breadcrumbs":5,"title":1},"275":{"body":25,"breadcrumbs":5,"title":1},"276":{"body":109,"breadcrumbs":8,"title":4},"277":{"body":26,"breadcrumbs":8,"title":2},"278":{"body":135,"breadcrumbs":7,"title":1},"279":{"body":103,"breadcrumbs":9,"title":3},"28":{"body":30,"breadcrumbs":9,"title":3},"280":{"body":62,"breadcrumbs":8,"title":2},"281":{"body":77,"breadcrumbs":7,"title":1},"282":{"body":11,"breadcrumbs":8,"title":2},"283":{"body":44,"breadcrumbs":12,"title":4},"284":{"body":91,"breadcrumbs":9,"title":1},"285":{"body":307,"breadcrumbs":9,"title":1},"286":{"body":117,"breadcrumbs":8,"title":2},"287":{"body":50,"breadcrumbs":12,"title":4},"288":{"body":0,"breadcrumbs":7,"title":1},"289":{"body":17,"breadcrumbs":7,"title":1},"29":{"body":21,"breadcrumbs":9,"title":3},"290":{"body":15,"breadcrumbs":8,"title":2},"291":{"body":0,"breadcrumbs":8,"title":2},"292":{"body":64,"breadcrumbs":7,"title":1},"293":{"body":36,"breadcrumbs":7,"title":1},"294":{"body":25,"breadcrumbs":7,"title":1},"295":{"body":124,"breadcrumbs":10,"title":4},"296":{"body":9,"breadcrumbs":9,"title":2},"297":{"body":16,"breadcrumbs":9,"title":2},"298":{"body":0,"breadcrumbs":9,"title":2},"299":{"body":250,"breadcrumbs":8,"title":1},"3":{"body":34,"breadcrumbs":6,"title":2},"30":{"body":21,"breadcrumbs":9,"title":3},"300":{"body":65,"breadcrumbs":8,"title":1},"301":{"body":85,"breadcrumbs":11,"title":4},"302":{"body":20,"breadcrumbs":10,"title":2},"303":{"body":39,"breadcrumbs":10,"title":2},"304":{"body":0,"breadcrumbs":10,"title":2},"305":{"body":28,"breadcrumbs":9,"title":1},"306":{"body":12,"breadcrumbs":10,"title":2},"307":{"body":19,"breadcrumbs":10,"title":2},"308":{"body":5,"breadcrumbs":11,"title":3},"309":{"body":8,"breadcrumbs":12,"title":4},"31":{"body":41,"breadcrumbs":6,"title":1},"310":{"body":9,"breadcrumbs":11,"title":3},"311":{"body":10,"breadcrumbs":12,"title":4},"312":{"body":11,"breadcrumbs":9,"title":1},"313":{"body":16,"breadcrumbs":10,"title":2},"314":{"body":16,"breadcrumbs":9,"title":1},"315":{"body":13,"breadcrumbs":10,"title":2},"316":{"body":0,"breadcrumbs":9,"title":1},"317":{"body":17,"breadcrumbs":9,"title":1},"318":{"body":63,"breadcrumbs":9,"title":1},"319":{"body":9,"breadcrumbs":10,"title":2},"32":{"body":40,"breadcrumbs":8,"title":3},"320":{"body":16,"breadcrumbs":10,"title":2},"321":{"body":61,"breadcrumbs":10,"title":2},"322":{"body":70,"breadcrumbs":12,"title":4},"323":{"body":88,"breadcrumbs":8,"title":1},"324":{"body":16,"breadcrumbs":10,"title":2},"325":{"body":19,"breadcrumbs":9,"title":1},"326":{"body":13,"breadcrumbs":10,"title":2},"327":{"body":0,"breadcrumbs":9,"title":1},"328":{"body":18,"breadcrumbs":9,"title":1},"329":{"body":30,"breadcrumbs":9,"title":1},"33":{"body":58,"breadcrumbs":8,"title":3},"330":{"body":10,"breadcrumbs":12,"title":3},"331":{"body":19,"breadcrumbs":11,"title":2},"332":{"body":62,"breadcrumbs":11,"title":2},"333":{"body":70,"breadcrumbs":13,"title":4},"334":{"body":102,"breadcrumbs":8,"title":1},"335":{"body":12,"breadcrumbs":13,"title":3},"336":{"body":19,"breadcrumbs":11,"title":1},"337":{"body":14,"breadcrumbs":12,"title":2},"338":{"body":77,"breadcrumbs":11,"title":1},"339":{"body":0,"breadcrumbs":11,"title":1},"34":{"body":28,"breadcrumbs":7,"title":2},"340":{"body":18,"breadcrumbs":11,"title":1},"341":{"body":26,"breadcrumbs":11,"title":1},"342":{"body":9,"breadcrumbs":11,"title":2},"343":{"body":17,"breadcrumbs":11,"title":2},"344":{"body":46,"breadcrumbs":11,"title":2},"345":{"body":77,"breadcrumbs":13,"title":4},"346":{"body":110,"breadcrumbs":9,"title":1},"347":{"body":20,"breadcrumbs":10,"title":2},"348":{"body":14,"breadcrumbs":9,"title":1},"349":{"body":0,"breadcrumbs":9,"title":1},"35":{"body":43,"breadcrumbs":7,"title":2},"350":{"body":27,"breadcrumbs":10,"title":2},"351":{"body":87,"breadcrumbs":10,"title":2},"352":{"body":9,"breadcrumbs":8,"title":1},"353":{"body":16,"breadcrumbs":9,"title":2},"354":{"body":13,"breadcrumbs":10,"title":3},"355":{"body":80,"breadcrumbs":8,"title":1},"356":{"body":9,"breadcrumbs":7,"title":1},"357":{"body":12,"breadcrumbs":7,"title":1},"358":{"body":12,"breadcrumbs":8,"title":2},"359":{"body":28,"breadcrumbs":7,"title":1},"36":{"body":30,"breadcrumbs":5,"title":1},"360":{"body":67,"breadcrumbs":7,"title":1},"361":{"body":19,"breadcrumbs":7,"title":1},"362":{"body":25,"breadcrumbs":7,"title":1},"363":{"body":15,"breadcrumbs":8,"title":2},"364":{"body":26,"breadcrumbs":7,"title":1},"365":{"body":72,"breadcrumbs":7,"title":1},"366":{"body":0,"breadcrumbs":11,"title":2},"367":{"body":17,"breadcrumbs":9,"title":1},"368":{"body":0,"breadcrumbs":9,"title":1},"369":{"body":16,"breadcrumbs":9,"title":1},"37":{"body":27,"breadcrumbs":8,"title":4},"370":{"body":93,"breadcrumbs":9,"title":1},"371":{"body":60,"breadcrumbs":9,"title":1},"372":{"body":0,"breadcrumbs":10,"title":2},"373":{"body":125,"breadcrumbs":10,"title":2},"374":{"body":178,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":154,"breadcrumbs":10,"title":2},"377":{"body":115,"breadcrumbs":10,"title":2},"378":{"body":10,"breadcrumbs":9,"title":1},"379":{"body":13,"breadcrumbs":9,"title":1},"38":{"body":23,"breadcrumbs":9,"title":5},"380":{"body":6,"breadcrumbs":9,"title":1},"381":{"body":117,"breadcrumbs":10,"title":2},"382":{"body":17,"breadcrumbs":9,"title":1},"383":{"body":37,"breadcrumbs":9,"title":1},"384":{"body":37,"breadcrumbs":9,"title":1},"385":{"body":3,"breadcrumbs":9,"title":1},"386":{"body":129,"breadcrumbs":9,"title":1},"387":{"body":5,"breadcrumbs":9,"title":2},"388":{"body":28,"breadcrumbs":7,"title":1},"389":{"body":18,"breadcrumbs":7,"title":1},"39":{"body":13,"breadcrumbs":6,"title":2},"390":{"body":5,"breadcrumbs":7,"title":1},"391":{"body":452,"breadcrumbs":9,"title":3},"392":{"body":22,"breadcrumbs":8,"title":2},"393":{"body":22,"breadcrumbs":9,"title":2},"394":{"body":70,"breadcrumbs":8,"title":1},"395":{"body":7,"breadcrumbs":8,"title":1},"396":{"body":8,"breadcrumbs":8,"title":1},"397":{"body":39,"breadcrumbs":9,"title":2},"398":{"body":58,"breadcrumbs":9,"title":2},"399":{"body":23,"breadcrumbs":9,"title":2},"4":{"body":18,"breadcrumbs":5,"title":1},"40":{"body":19,"breadcrumbs":9,"title":3},"400":{"body":19,"breadcrumbs":9,"title":2},"401":{"body":72,"breadcrumbs":9,"title":2},"402":{"body":57,"breadcrumbs":9,"title":2},"403":{"body":7,"breadcrumbs":10,"title":3},"404":{"body":46,"breadcrumbs":9,"title":2},"405":{"body":49,"breadcrumbs":9,"title":2},"406":{"body":25,"breadcrumbs":8,"title":1},"407":{"body":6,"breadcrumbs":9,"title":2},"408":{"body":0,"breadcrumbs":12,"title":4},"409":{"body":26,"breadcrumbs":12,"title":4},"41":{"body":0,"breadcrumbs":7,"title":1},"410":{"body":0,"breadcrumbs":10,"title":2},"411":{"body":10,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":10,"title":2},"413":{"body":13,"breadcrumbs":10,"title":2},"414":{"body":7,"breadcrumbs":11,"title":3},"415":{"body":10,"breadcrumbs":11,"title":3},"416":{"body":10,"breadcrumbs":11,"title":3},"417":{"body":16,"breadcrumbs":9,"title":1},"418":{"body":0,"breadcrumbs":6,"title":2},"419":{"body":36,"breadcrumbs":5,"title":1},"42":{"body":5,"breadcrumbs":7,"title":1},"420":{"body":152,"breadcrumbs":7,"title":3},"421":{"body":94,"breadcrumbs":5,"title":1},"422":{"body":209,"breadcrumbs":6,"title":2},"423":{"body":10,"breadcrumbs":6,"title":2},"424":{"body":176,"breadcrumbs":8,"title":4},"425":{"body":48,"breadcrumbs":7,"title":2},"426":{"body":0,"breadcrumbs":9,"title":2},"427":{"body":5,"breadcrumbs":9,"title":2},"428":{"body":5,"breadcrumbs":9,"title":3},"429":{"body":5,"breadcrumbs":7,"title":2},"43":{"body":10,"breadcrumbs":7,"title":1},"430":{"body":34,"breadcrumbs":6,"title":1},"431":{"body":43,"breadcrumbs":6,"title":1},"432":{"body":19,"breadcrumbs":9,"title":4},"433":{"body":20,"breadcrumbs":8,"title":2},"434":{"body":86,"breadcrumbs":7,"title":1},"435":{"body":3,"breadcrumbs":7,"title":1},"436":{"body":44,"breadcrumbs":9,"title":3},"437":{"body":49,"breadcrumbs":9,"title":3},"438":{"body":21,"breadcrumbs":10,"title":3},"439":{"body":137,"breadcrumbs":8,"title":1},"44":{"body":47,"breadcrumbs":9,"title":3},"440":{"body":3,"breadcrumbs":8,"title":1},"441":{"body":26,"breadcrumbs":10,"title":3},"442":{"body":26,"breadcrumbs":10,"title":3},"443":{"body":42,"breadcrumbs":10,"title":3},"444":{"body":79,"breadcrumbs":10,"title":3},"445":{"body":0,"breadcrumbs":6,"title":2},"446":{"body":0,"breadcrumbs":10,"title":4},"447":{"body":64,"breadcrumbs":7,"title":1},"448":{"body":2658,"breadcrumbs":9,"title":3},"449":{"body":8802,"breadcrumbs":10,"title":4},"45":{"body":67,"breadcrumbs":9,"title":3},"450":{"body":103278,"breadcrumbs":8,"title":2},"451":{"body":225,"breadcrumbs":9,"title":3},"452":{"body":657,"breadcrumbs":7,"title":1},"453":{"body":2925,"breadcrumbs":7,"title":1},"454":{"body":1,"breadcrumbs":7,"title":1},"455":{"body":2,"breadcrumbs":8,"title":2},"456":{"body":252,"breadcrumbs":10,"title":4},"457":{"body":252,"breadcrumbs":10,"title":4},"458":{"body":454,"breadcrumbs":22,"title":16},"459":{"body":87,"breadcrumbs":8,"title":3},"46":{"body":5,"breadcrumbs":8,"title":2},"460":{"body":18,"breadcrumbs":6,"title":1},"461":{"body":81,"breadcrumbs":7,"title":2},"462":{"body":128,"breadcrumbs":8,"title":3},"463":{"body":81,"breadcrumbs":7,"title":2},"464":{"body":0,"breadcrumbs":6,"title":1},"465":{"body":101,"breadcrumbs":9,"title":4},"466":{"body":115,"breadcrumbs":8,"title":3},"467":{"body":53,"breadcrumbs":10,"title":5},"468":{"body":34,"breadcrumbs":7,"title":2},"469":{"body":64,"breadcrumbs":9,"title":4},"47":{"body":340,"breadcrumbs":7,"title":1},"470":{"body":139,"breadcrumbs":8,"title":3},"471":{"body":117,"breadcrumbs":7,"title":2},"472":{"body":73,"breadcrumbs":6,"title":1},"473":{"body":49,"breadcrumbs":6,"title":1},"474":{"body":29,"breadcrumbs":11,"title":6},"475":{"body":124,"breadcrumbs":7,"title":2},"476":{"body":124,"breadcrumbs":8,"title":3},"477":{"body":0,"breadcrumbs":6,"title":2},"478":{"body":5,"breadcrumbs":12,"title":5},"479":{"body":5,"breadcrumbs":14,"title":6},"48":{"body":49,"breadcrumbs":8,"title":2},"480":{"body":5,"breadcrumbs":16,"title":7},"481":{"body":5,"breadcrumbs":14,"title":6},"482":{"body":5,"breadcrumbs":12,"title":5},"483":{"body":5,"breadcrumbs":12,"title":5},"484":{"body":66,"breadcrumbs":6,"title":3},"485":{"body":17,"breadcrumbs":5,"title":2},"486":{"body":18,"breadcrumbs":5,"title":2},"487":{"body":62,"breadcrumbs":4,"title":1},"488":{"body":0,"breadcrumbs":5,"title":2},"489":{"body":15,"breadcrumbs":5,"title":2},"49":{"body":64,"breadcrumbs":7,"title":2},"490":{"body":257,"breadcrumbs":5,"title":2},"491":{"body":168,"breadcrumbs":5,"title":2},"492":{"body":0,"breadcrumbs":6,"title":3},"493":{"body":0,"breadcrumbs":5,"title":2},"494":{"body":0,"breadcrumbs":4,"title":1},"495":{"body":0,"breadcrumbs":5,"title":2},"496":{"body":0,"breadcrumbs":8,"title":4},"497":{"body":49,"breadcrumbs":5,"title":1},"498":{"body":75,"breadcrumbs":5,"title":1},"499":{"body":42,"breadcrumbs":6,"title":2},"5":{"body":12,"breadcrumbs":8,"title":2},"50":{"body":13,"breadcrumbs":7,"title":2},"500":{"body":34,"breadcrumbs":5,"title":1},"501":{"body":25,"breadcrumbs":5,"title":1},"502":{"body":13,"breadcrumbs":6,"title":2},"503":{"body":27,"breadcrumbs":6,"title":2},"504":{"body":42,"breadcrumbs":6,"title":2},"505":{"body":41,"breadcrumbs":7,"title":3},"506":{"body":26,"breadcrumbs":7,"title":3},"507":{"body":37,"breadcrumbs":5,"title":1},"508":{"body":46,"breadcrumbs":6,"title":3},"509":{"body":16,"breadcrumbs":6,"title":3},"51":{"body":17,"breadcrumbs":6,"title":1},"510":{"body":5,"breadcrumbs":2,"title":1},"52":{"body":11,"breadcrumbs":6,"title":1},"53":{"body":50,"breadcrumbs":6,"title":1},"54":{"body":0,"breadcrumbs":11,"title":4},"55":{"body":39,"breadcrumbs":9,"title":2},"56":{"body":59,"breadcrumbs":10,"title":3},"57":{"body":54,"breadcrumbs":10,"title":3},"58":{"body":12,"breadcrumbs":5,"title":1},"59":{"body":188,"breadcrumbs":6,"title":2},"6":{"body":0,"breadcrumbs":8,"title":2},"60":{"body":0,"breadcrumbs":5,"title":1},"61":{"body":25,"breadcrumbs":6,"title":2},"62":{"body":34,"breadcrumbs":8,"title":4},"63":{"body":37,"breadcrumbs":5,"title":1},"64":{"body":81,"breadcrumbs":5,"title":1},"65":{"body":4,"breadcrumbs":5,"title":1},"66":{"body":7,"breadcrumbs":6,"title":2},"67":{"body":13,"breadcrumbs":6,"title":2},"68":{"body":70,"breadcrumbs":5,"title":1},"69":{"body":44,"breadcrumbs":6,"title":2},"7":{"body":18,"breadcrumbs":7,"title":1},"70":{"body":9,"breadcrumbs":7,"title":2},"71":{"body":68,"breadcrumbs":8,"title":3},"72":{"body":206,"breadcrumbs":7,"title":2},"73":{"body":329,"breadcrumbs":7,"title":2},"74":{"body":29,"breadcrumbs":7,"title":2},"75":{"body":99,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":38,"breadcrumbs":6,"title":1},"78":{"body":0,"breadcrumbs":5,"title":1},"79":{"body":9,"breadcrumbs":5,"title":1},"8":{"body":19,"breadcrumbs":7,"title":1},"80":{"body":25,"breadcrumbs":5,"title":1},"81":{"body":38,"breadcrumbs":5,"title":1},"82":{"body":15,"breadcrumbs":5,"title":1},"83":{"body":27,"breadcrumbs":7,"title":3},"84":{"body":43,"breadcrumbs":6,"title":2},"85":{"body":37,"breadcrumbs":6,"title":2},"86":{"body":13,"breadcrumbs":6,"title":2},"87":{"body":25,"breadcrumbs":7,"title":3},"88":{"body":4,"breadcrumbs":5,"title":1},"89":{"body":58,"breadcrumbs":9,"title":5},"9":{"body":30,"breadcrumbs":7,"title":1},"90":{"body":122,"breadcrumbs":7,"title":3},"91":{"body":49,"breadcrumbs":9,"title":5},"92":{"body":620,"breadcrumbs":8,"title":4},"93":{"body":4,"breadcrumbs":8,"title":4},"94":{"body":52,"breadcrumbs":7,"title":3},"95":{"body":79,"breadcrumbs":7,"title":3},"96":{"body":4,"breadcrumbs":5,"title":1},"97":{"body":3,"breadcrumbs":5,"title":1},"98":{"body":33,"breadcrumbs":5,"title":1},"99":{"body":0,"breadcrumbs":5,"title":1}},"docs":{"0":{"body":"Draft The Catalyst-Core Documentation is currently undergoing review and re-write. This documentation is published AS-IS. There is no guarantee that it is correct with regards to the current implementation. The source of all truth with regards to the implementation is the source code. Patches to improve the documentation are very welcome. See Contributing . Found a bug? Edit this page on GitHub.","breadcrumbs":"Prologue » Prologue","id":"0","title":"Prologue"},"1":{"body":"","breadcrumbs":"Introduction » Introduction","id":"1","title":"Introduction"},"10":{"body":"The blockchain is the general set of rules and the blocks that are periodically created. Some of the rules and settings, can be changed dynamically in the system by updates, while some other are hardcoded in the genesis block (first block of the blockchain). +-------+ +-------+ |Genesis+<-----+Block 1+<--- .... |Header | |Header | +---+---+ +---+---+ | | +---v---+ +---v---+ |Genesis| |Block 1| |Content| |Content| +-------+ +-------+","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain","id":"10","title":"Blockchain"},"100":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin or equivantely cat genesis.yaml | jcli genesis encode > block-0.bin","breadcrumbs":"Core Ledger » jcli » Genesis » Encode a genesis file","id":"100","title":"Encode a genesis file"},"101":{"body":"jcli genesis hash --input block-0.bin Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Genesis » Get the hash of an encoded genesis file","id":"101","title":"Get the hash of an encoded genesis file"},"102":{"body":"There are multiple type of key for multiple use cases. type usage ed25519 Signing algorithm for Ed25519 algorithm ed25519-bip32 Related to the HDWallet, Ed25519 Extended with chain code for derivation ed25519-extended Related to Ed25519Bip32 without the chain code sum-ed25519-12 For stake pool, necessary for the KES ristretto-group2-hash-dh For stake pool, necessary for the VRF There is a command line parameter to generate this keys: $ jcli key generate --type=Ed25519\ned25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt and to extract the associated public key: $ echo ed25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt | jcli key to-public\ned25519_pk1z2ffur59cq7t806nc9y2g64wa60pg5m6e9cmrhxz9phppaxk5d4sn8nsqg","breadcrumbs":"Core Ledger » jcli » cryptographic keys » cryptographic keys","id":"102","title":"cryptographic keys"},"103":{"body":"Sign data with private key. Supported key formats are: ed25519, ed25519-bip32, ed25519-extended and sumed25519_12. jcli key sign The options are –secret-key - path to file with bech32-encoded secret key -o, –output - path to file to write signature into, if no value is passed, standard output will be used - path to file with data to sign, if no value is passed, standard input will be used","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Signing data","id":"103","title":"Signing data"},"104":{"body":"Verify signed data with public key. Supported key formats are: ed25519, ed25519bip32 and sumed25519_12. jcli key verify The options are –public-key - path to file with bech32-encoded public key –signature - path to file with signature - path to file with data to sign, if no value is passed, standard input will be used Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Verifying signed data","id":"104","title":"Verifying signed data"},"105":{"body":"Jormungandr comes with a CLI client for manual communication with nodes over HTTP.","breadcrumbs":"Core Ledger » jcli » REST » REST","id":"105","title":"REST"},"106":{"body":"Many CLI commands have common arguments: -h or --host - Node API address. Must always have http:// or https:// prefix and always ends with the /api. E.g. -h http://127.0.0.1:8081/api, --host https://node.com:8443/cardano/api. --debug - Print additional debug information to stderr. The output format is intentionally undocumented and unstable --output-format - Format of output data. Possible values: json, yaml, default yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ .","breadcrumbs":"Core Ledger » jcli » REST » Conventions","id":"106","title":"Conventions"},"107":{"body":"Fetches node stats jcli rest v0 node stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# Number of blocks received by node\nblockRecvCnt: 1102\n# Size in bytes of all transactions in last block\nlastBlockContentSize: 484\n# The Epoch and slot Number of the block (optional)\nlastBlockDate: \"20.29\"\n# Sum of all fee values in all transactions in last block\nlastBlockFees: 534\n# The block hash, it's unique identifier in the blockchain (optional)\nlastBlockHash: b9597b45a402451540e6aabb58f2ee4d65c67953b338e04c52c00aa0886bd1f0\n# The block number, in order, since the block0 (optional)\nlastBlockHeight: 202901\n# Sum of all input values in all transactions in last block\nlastBlockSum: 51604\n# The time slot of the tip block\nlastBlockTime: \"2020-01-30T22:37:46+00:00\"\n# Number of transactions in last block\nlastBlockTx: 2\n# The time at which we received the last block, not necessarily the current tip block (optional)\nlastReceivedBlockTime: \"2020-01-30T22:37:59+00:00\"\n# 24 bytes encoded in hexadecimal Node ID\nnodeId: \"ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d\"\n# Number of nodes that are available for p2p discovery and events propagation\npeerAvailableCnt: 321\n# Number of nodes that have been quarantined by our node\npeerQuarantinedCnt: 123\n# Total number of nodes\npeerTotalCnt: 444\n# Number of nodes that are connected to ours but that are not publicly reachable\npeerUnreachableCnt: 0\n# State of the node\nstate: Running\n# Number of transactions received by node\ntxRecvCnt: 5440\n# Node uptime in seconds\nuptime: 20032\n# Node app version\nversion: jormungandr 0.8.9-30d20d2e","breadcrumbs":"Core Ledger » jcli » REST » Node stats","id":"107","title":"Node stats"},"108":{"body":"Fetches UTxO details jcli rest v0 utxo get - hex-encoded ID of the transaction fragment - index of the transaction output The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# UTxO owner address\naddress: ca1svs0mwkfky9htpam576mc93mee5709khre8dgnqslj6y3p5f77s5gpgv02w\n# UTxO value\nvalue: 10000","breadcrumbs":"Core Ledger » jcli » REST » Get UTxO","id":"108","title":"Get UTxO"},"109":{"body":"Posts a signed, hex-encoded transaction jcli rest v0 message post The options are -h - see conventions –debug - see conventions -f –file - File containing hex-encoded transaction. If not provided, transaction will be read from stdin. Fragment Id is printed on success (which can help finding transaction status using get message log command) 50f21ac6bd3f57f231c4bf9c5fff7c45e2529c4dffed68f92410dbf7647541f1","breadcrumbs":"Core Ledger » jcli » REST » Post transaction","id":"109","title":"Post transaction"},"11":{"body":"The node currently support the following consensus protocol: Ouroboros BFT (OBFT) Ouroboros Genesis-Praos Ouroboros BFT is a simple Byzantine Fault Tolerant (BFT) protocol where the block makers is a known list of leaders that successively create a block and broadcast it on the network. Ouroboros Genesis Praos is a proof of stake (PoS) protocol where the block maker is made of a lottery where each stake pool has a chance proportional to their stake to be elected to create a block. Each lottery draw is private to each stake pool, so that the overall network doesn’t know in advance who can or cannot create blocks. In Genesis-Praos slot time duration is constant, however the frequency of creating blocks is not stable, since the creation of blocks is a probability that is linked to the stake and consensus_genesis_praos_active_slot_coeff. Note : In Genesis-Praos, if there is no stake in the system, no blocks will be created anymore starting with the next epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Consensus","id":"11","title":"Consensus"},"110":{"body":"Get the node’s logs on the message pool. This will provide information on pending transaction, rejected transaction and or when a transaction has been added in a block jcli rest v0 message logs The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- fragment_id: 7db6f91f3c92c0aef7b3dd497e9ea275229d2ab4dba6a1b30ce6b32db9c9c3b2 # hex-encoded fragment ID last_updated_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of last fragment status change received_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of fragment receivement received_from: Network, # how fragment was received status: Pending, # fragment status received_from can be one of: received_from: Rest # fragment was received from node's REST API received_from: Network # fragment was received from the network status can be one of: status: Pending # fragment is pending status: Rejected: # fragment was rejected reason: reason of rejection # cause status: # fragment was included in a block InABlock: date: \"6637.3\" # block epoch and slot ID formed as . block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\"","breadcrumbs":"Core Ledger » jcli » REST » Get message log","id":"110","title":"Get message log"},"111":{"body":"Retrieves a hex-encoded ID of the blockchain tip jcli rest v0 tip get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Blockchain tip","id":"111","title":"Blockchain tip"},"112":{"body":"Retrieves a hex-encoded block with given ID jcli rest v0 block get - hex-encoded block ID The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Get block","id":"112","title":"Get block"},"113":{"body":"Retrieves a list of hex-encoded IDs of descendants of block with given ID. Every list element is in separate line. The IDs are sorted from closest to farthest. jcli rest v0 block next-id get - hex-encoded block ID The options are -h - see conventions –debug - see conventions -c –count - Maximum number of IDs, must be between 1 and 100, default 1","breadcrumbs":"Core Ledger » jcli » REST » Get next block ID","id":"113","title":"Get next block ID"},"114":{"body":"Get account state jcli rest v0 account get - ID of an account, bech32-encoded The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ncounter: 1\ndelegation: c780f14f9782770014d8bcd514b1bc664653d15f73a7158254730c6e1aa9f356\nvalue: 990 value is the current balance of the account; counter is the number of transactions performed using this account this is useful to know when signing new transactions; delegation is the Stake Pool Identifier the account is delegating to. it is possible this value is not set if there is no delegation certificate sent associated to this account.","breadcrumbs":"Core Ledger » jcli » REST » Get account state","id":"114","title":"Get account state"},"115":{"body":"Fetches node settings jcli rest v0 settings get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\nblock0Hash: 8d94ecfcc9a566f492e6335858db645691f628b012bed4ac2b1338b5690355a7 # block 0 hash of\nblock0Time: \"2019-07-09T12:32:51+00:00\" # block 0 creation time of\nblockContentMaxSize: 102400 # the block content's max size in bytes\nconsensusVersion: bft # currently used consensus\ncurrSlotStartTime: \"2019-07-09T12:55:11+00:00\" # current slot start time\nepochStabilityDepth: 102400 # the depth, number of blocks, to which we consider the blockchain to # be stable and prevent rollback beyond that depth\nfees: # transaction fee configuration certificate: 4 # fee per certificate coefficient: 1 # fee per every input and output constant: 2 # fee per transaction per_certificate_fees: # fee per certificate operations, all zero if this object absent (optional) certificate_pool_registration: 5 # fee per pool registration, zero if absent (optional) certificate_stake_delegation: 15 # fee per stake delegation, zero if absent (optional) certificate_owner_stake_delegation: 2 # fee per pool owner stake delegation, zero if absent (optional)\nrewardParams: # parameters for rewards calculation compoundingRatio: # speed at which reward is reduced. Expressed as numerator/denominator denominator: 1024 numerator: 1 compoundingType: Linear # reward reduction algorithm. Possible values: \"Linear\" and \"Halvening\" epochRate: 100 # number of epochs between reward reductions epochStart: 0 # epoch when rewarding starts initialValue: 10000 # initial reward\nslotDuration: 5 # slot duration in seconds\nslotsPerEpoch: 720 # number of slots per epoch\ntreasuryTax: # tax from reward that goes to pot fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)","breadcrumbs":"Core Ledger » jcli » REST » Node settings","id":"115","title":"Node settings"},"116":{"body":"Node shutdown jcli rest v0 shutdown get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Node shutdown","id":"116","title":"Node shutdown"},"117":{"body":"Fetches list of leader IDs jcli rest v0 leaders get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 1 # list of leader IDs\n- 2","breadcrumbs":"Core Ledger » jcli » REST » Get leaders","id":"117","title":"Get leaders"},"118":{"body":"Register new leader and get its ID jcli rest v0 leaders post The options are -h - see conventions –debug - see conventions –output-format - see conventions -f, –file - File containing YAML with leader secret. It must have the same format as secret YAML passed to Jormungandr as –secret. If not provided, YAML will be read from stdin. On success created leader ID is printed 3","breadcrumbs":"Core Ledger » jcli » REST » Register leader","id":"118","title":"Register leader"},"119":{"body":"Delete leader with given ID jcli rest v0 leaders delete - ID of deleted leader The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Delete leader","id":"119","title":"Delete leader"},"12":{"body":"The leadership represent in abstract term, who are the overall leaders of the system and allow each individual node to check that specific blocks are lawfully created in the system. The leadership is re-evaluated at each new epoch and is constant for the duration of an epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leadership","id":"12","title":"Leadership"},"120":{"body":"Fetches leadership logs jcli rest v0 leaders logs get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- created_at_time: \"2019-08-19T12:25:00.417263555+00:00\" enclave_leader_id: 1 finished_at_time: \"2019-08-19T23:19:05.010113333+00:00\" scheduled_at_date: \"0.3923\" scheduled_at_time: \"2019-08-19T23:18:35+00:00\" wake_at_time: \"2019-08-19T23:18:35.001254555+00:00\" status: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 Different value for the status: # meaning the action is still pending to happen\nstatus: Pending # meaning the action successfully create the given block with the given hash and parent\nstatus: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 # meaning the event has failed for some reasons\nstatus: Rejected: reason: \"Missed the deadline to compute the schedule\"","breadcrumbs":"Core Ledger » jcli » REST » Get leadership logs","id":"120","title":"Get leadership logs"},"121":{"body":"Fetches list of stake pool IDs jcli rest v0 stake-pools get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # list of stake pool IDs\n- 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615","breadcrumbs":"Core Ledger » jcli » REST » Get stake pools","id":"121","title":"Get stake pools"},"122":{"body":"Fetches stake information jcli rest v0 stake get [] - Epoch to get the stake distribution from. (optional) The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success jcli rest v0 stake get - stake distribution from the current epoch ---\nepoch: 228 # Epoch of last block\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool jcli rest v0 stake get 10 - stake distribution from a specific epoch (epoch 10 in this example) ---\nepoch: 10 # Epoch specified in the request\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool","breadcrumbs":"Core Ledger » jcli » REST » Get stake distribution","id":"122","title":"Get stake distribution"},"123":{"body":"Fetches network stats jcli rest v0 network stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- # node address (optional) addr: \"3.124.55.91:3000\" # hex-encoded node ID nodeId: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 # timestamp of when the connection was established establishedAt: \"2019-10-14T06:24:12.010231281+00:00\" # timestamp of last time block was received from node if ever (optional) lastBlockReceived: \"2019-10-14T00:45:57.419496113+00:00\" # timestamp of last time fragment was received from node if ever (optional) lastFragmentReceived: \"2019-10-14T00:45:58.419496150+00:00\" # timestamp of last time gossip was received from node if ever (optional) lastGossipReceived: \"2019-10-14T00:45:59.419496188+00:00\"","breadcrumbs":"Core Ledger » jcli » REST » Network stats","id":"123","title":"Network stats"},"124":{"body":"Fetches stake pool details jcli rest v0 stake-pool get - hex-encoded pool ID The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ntax: # pool reward fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)\ntotal_stake: 2000000000000 # total stake pool value\n# bech32-encoded stake pool KES key\nkesPublicKey: kes25519-12-pk1q7susucqwje0lpetqzjgzncgcrjzx7e2guh900qszdjskkeyqpusf3p39r\n# bech32-encoded stake pool VRF key\nvrfPublicKey: vrf_pk1rcm4qm3q9dtwq22x9a4avnan7a3k987zvepuxwekzj3uyu6a8v0s6sdy0l","breadcrumbs":"Core Ledger » jcli » REST » Get stake pool details","id":"124","title":"Get stake pool details"},"125":{"body":"Get the rewards history of a given epoch . jcli rest v0 rewards epoch get - epoch number to get the rewards history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards epoch get 82 -h [ { \"epoch\": 82, // the epoch number to collect rewards info from (rewards are from epoch 81) \"drawn\": 3835616440000, // Total Drawn from reward escrow pot for the epoch \"fees\": 1828810000, // Fees contributed into the pot the epoch \"treasury\": 462179124139, // Value added to the treasury \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1683091391, // pool's owned rewards from taxes 32665712521 // distributed rewards to delegators ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 47706672, 906426770 ], }, \"accounts\": { \"ed25519_pk1qqq6r7r7medu2kdpvdra5kwh8uz9frvftm9lf25shm7ygx9ayvss0nqke9\": 427549785, // Amount added to each account \"ed25519_pk1qqymlwehsztpzhy2k4szkp7j0xk0ra35jyxcpgr9p9q4ngvzzc5q4sh2gm\": 24399360, \"ed25519_pk1qq9h62jv6a0mz36xgecjrz9tm8z6ay3vj4d64ashxkgxcyhjewwsvgvelj\": 22449169, \"ed25519_pk1qq9l2qrqazk5fp4kt2kvjtsjc32g0ud888um8k2pvms0cw2r0uzsute83u\": 1787992, \"ed25519_pk1qqx6h559ee7pa67dm255d0meekt6dmq6857x302wdwrhzv47z9hqucdnt2\": 369024, } }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for a specific epoch","id":"125","title":"Get rewards history for a specific epoch"},"126":{"body":"Get the rewards history of the length last epoch(s) from tip. jcli rest v0 rewards history get - number of epochs, starting from the last epoch from tip, to get the reward history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards history get 2 -h [ { \"epoch\": 93, \"drawn\": 3835616440000, \"fees\": 641300000, \"treasury\": 467151470296, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1121750881, 21771124247 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 429241408, 8155586765 ], \"01bd272cede02d0b0c9cd47b16e5356ab3fb2330dd9d1e972ab5494365309d2a\": [ 1691506850, 32829041110 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 33311805, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 15809, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 10007789, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 545094806, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 4208232, }, }, { \"epoch\": 92, \"drawn\": 3835616440000, \"fees\": 620400000, \"treasury\": 480849578351, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 979164601, 19003786459 ], \"0105449dd66524111349ef677d1ebc25247a5ba2d094913f52aa4db265eac03a\": [ 26977274, 972170279 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 299744265, 5695141053 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 40581616, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 49156, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 12306084, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 142737175, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 3932910, }, }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for some epochs","id":"126","title":"Get rewards history for some epochs"},"127":{"body":"Get the list of voting committee members. jcli rest v0 vote active committees get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19 # list of members\n- f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db","breadcrumbs":"Core Ledger » jcli » REST » Get voting committee members","id":"127","title":"Get voting committee members"},"128":{"body":"Get the list of active voting plans and proposals. jcli rest v0 vote active plans get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- committee_end: epoch: 10 slot_id: 0 proposals: - external_id: adb92757155d09e7f92c9f100866a92dddd35abd2a789a44ae19ab9a1dbc3280 options: OneOf: max_value: 3 - external_id: 6778d37161c3962fe62c9fa8a31a55bccf6ec2d1ea254a467d8cd994709fc404 options: OneOf: max_value: 3 vote_end: epoch: 5 slot_id: 0 vote_start: epoch: 1 slot_id: 0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » REST » Get active voting plans and proposals","id":"128","title":"Get active voting plans and proposals"},"129":{"body":"Tooling for offline transaction creation and signing. jcli transaction Those familiar with cardano-cli transaction builder will see resemblance in jcli transaction. There is a couple of commands that can be used to: prepare a transaction: new create a new empty transaction; add-input add-account add-output finalize the transaction for signing: create witnesses and add the witnesses: make-witness add-witness seal the transaction, ready to send to the blockchain auth the transaction, if it contains a certificate There are also functions to help decode and display the content information of a transaction: info displays summary of transaction being constructed data-for-witness get the data to sign from a given transaction fragment-id get the Fragment ID from a transaction in sealed state to-message to get the hexadecimal encoded message, ready to send with cli rest message DEPRECATED : id get the data to sign from a given transaction (use data-for-witness instead)","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction","id":"129","title":"Transaction"},"13":{"body":"Leader are an abstraction related to the specific actor that have the ability to create block; In OBFT mode, the leader just the owner of a cryptographic key, whereas in Genesis-Praos mode, the leader is a stake pool.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leader","id":"13","title":"Leader"},"130":{"body":"On every stage of building a transaction user can display its summary jcli transaction info The options are: --prefix - set the address prefix to use when displaying the addresses (default: ca) --fee-certificate - fee per certificate (default: 0) --fee-coefficient - fee per every input and output (default: 0) --fee-constant - fee per transaction (default: 0) --fee-owner-stake-delegation - fee per owner stake delegation (default: fee-certificate) --fee-pool-registration - fee per pool registration (default: fee-certificate) --fee-stake-delegation - fee per stake delegation (default: fee-certificate) --fee-vote-cast - fee per vote cast --fee-vote-plan - fee per vote plan --output-format - Format of output data. Possible values: json, yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ . (default: yaml) --output - write the info in the given file or print it to the standard output --staging - place where the transaction is going to be saved during its staging phase. If a file is given, the transaction will be read from this file and modification will be written into this same file. If no file is given, the transaction will be read from the standard input and will be rendered in the standard output. YAML printed on success ---\nbalance: 40 # transaction balance or how much input is not spent\nfee: 60 # total fee for transaction\ninput: 200 # total input of transaction\ninputs: # list of transaction inputs, each can be of either \"utxo\" or \"account\" kind - index: 4 # index of transaction output kind: utxo # constant value, signals that UTxO is used # hex-encoded ID of transaction txid: 543326b2739356ab6d14624a536ca696f1020498b36456b7fdfe8344c084bfcf value: 130 # value of transaction output - # hex-encoded account address account: 3fd45a64ae5a3b9c35e37114baa099b8b01285f7d74b371597af22d5ff393d9f kind: account # constant value, signals that account is used value: 70 # value taken from account\nnum_inputs: 1 # total number of inputs of transaction\nnum_outputs: 1 # total number of outputs of transaction\nnum_witnesses: 1 # total number of witnesses of transaction\noutput: 100 # total output of transaction\noutputs: # list of transaction outputs - # bech32-encoded address address: ca1swedukl830v26m8hl7e5dzrjp77yctuz79a68r8jl2l79qnpu3uwz0kg8az value: 100 # value sent to address # hex-encoded transaction hash, when transaction is complete, it's also its ID\nsign_data_hash: 26be0b8bd7e34efffb769864f00d7c4aab968760f663a7e0b3ce213c4b21651b\nstatus: sealed # transaction status, can be \"balancing\", \"finalizing\", \"sealed\" or \"authed\"","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction info","id":"130","title":"Transaction info"},"131":{"body":"The following example focuses on using an utxo as input, the few differences when transfering from an account will be pointed out when necessary. Also, the simplified make-transaction command in jcli covers all this process. For more information run: jcli transaction make-transaction --help Let’s use the following utxo as input and transfer 50 lovelaces to the destination address","breadcrumbs":"Core Ledger » jcli » Transaction » Examples","id":"131","title":"Examples"},"132":{"body":"Field Value UTXO’s transaction ID 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c UTXO’s output index 0 associated address ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu associated value 100","breadcrumbs":"Core Ledger » jcli » Transaction » Input utxo","id":"132","title":"Input utxo"},"133":{"body":"address : ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6","breadcrumbs":"Core Ledger » jcli » Transaction » Destination address","id":"133","title":"Destination address"},"134":{"body":"jcli transaction new --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Create a staging area","id":"134","title":"Create a staging area"},"135":{"body":"For the input, we need to reference the utxo with the UTXO’s transaction ID and UTXO’S output index fields. We also need to specify how many coins there are with the associated value field.","breadcrumbs":"Core Ledger » jcli » Transaction » Add input","id":"135","title":"Add input"},"136":{"body":"jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 100 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - UTXO address as Input","id":"136","title":"Example - UTXO address as Input"},"137":{"body":"If the input is an account, the command is slightly different jcli transaction add-account account_address account_funds --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - Account address as Input","id":"137","title":"Example - Account address as Input"},"138":{"body":"For the output, we need the address we want to transfer to, and the amount. jcli transaction add-output ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 50 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add output","id":"138","title":"Add output"},"139":{"body":"We want to get the change in the same address that we are sending from (the associated address of the utxo). We also specify how to compute the fees. You can leave out the --fee-constant 5 --fee-coefficient 2 part if those are both 0. jcli transaction finalize ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu --fee-constant 5 \\ --fee-coefficient 2 --staging tx Now, if you run jcli transaction info --fee-constant 5 --fee-coefficient 2 --staging tx You should see something like this ---\nbalance: 0\nfee: 11\ninput: 100\ninputs: - index: 0 kind: utxo txid: 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c value: 100\nnum_inputs: 1\nnum_outputs: 2\nnum_witnesses: 0\noutput: 89\noutputs: - address: ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 value: 50 - address: ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu value: 39\nsign_data_hash: 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273\nstatus: finalizing","breadcrumbs":"Core Ledger » jcli » Transaction » Add fee and change address","id":"139","title":"Add fee and change address"},"14":{"body":"Transaction forms the cornerstone of the blockchain, and is one type of fragment and also the most frequent one. Transaction is composed of inputs and outputs; On one side, the inputs represent coins being spent, and on the other side the outputs represent coins being received. Inputs Alice (80$) Bob (20$) \\ / \\ / ----------- 100$ --------- / \\ Outputs Charlie (50$) Dan (50$) Transaction have fees that are defined by the blockchain settings and the following invariant hold: \\( \\sum Inputs = \\sum Outputs + fees \\) Transaction need to be authorized by each of the inputs in the transaction by their respective witness. In the most basic case, a witness is a cryptographic signature, but depending on the type of input can the type of witness vary.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Transaction","id":"14","title":"Transaction"},"140":{"body":"","breadcrumbs":"Core Ledger » jcli » Transaction » Sign the transaction","id":"140","title":"Sign the transaction"},"141":{"body":"For signing the transaction, you need: the hash of the genesis block of the network you are connected to. the private key associated with the input address (the one that’s in the utxos). the hash of the transaction, that can be retrieved in two ways: sign_data_hash value from jcli transaction info --staging tx or jcli transaction data-for-witness --staging tx The genesis’ hash is needed for ensuring that the transaction: cannot be re-used in another blockchain and for security concerns on offline transaction signing, as we are signing the transaction for the specific blockchain started by this block0 hash. First we need to get the hash of the transaction we are going to sign. jcli transaction data-for-witness --staging tx You should see something like this (the value may be different since it depends on the input/output data) 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 The following command takes the private key in the key.prv file and creates a witness in a file named witness in the current directory. jcli transaction make-witness --genesis-block-hash abcdef987654321... \\ --type utxo 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv Account input When using an account as input, the command takes account as the type and an additional parameter: --account-spending-counter, that should be increased every time the account is used as input. e.g. jcli transaction make-witness --genesis-block-hash abcdef987654321... --type account --account-spending-counter 0 \\ 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv","breadcrumbs":"Core Ledger » jcli » Transaction » Make witness","id":"141","title":"Make witness"},"142":{"body":"jcli transaction add-witness witness --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add witness","id":"142","title":"Add witness"},"143":{"body":"jcli transaction seal --staging tx jcli transaction to-message --staging tx > txmsg Send it using the rest api jcli rest v0 message post -f txmsg --host http://127.0.0.1:8443/api You should get some data back referring to the TransactionID (also known as FragmentID) d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2","breadcrumbs":"Core Ledger » jcli » Transaction » Send the transaction","id":"143","title":"Send the transaction"},"144":{"body":"You can check if the transaction was accepted by checking the node logs, for example, if the transaction is accepted jcli rest v0 message logs -h http://127.0.0.1:8443/api ---\n- fragment_id: d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2 last_updated_at: \"2019-06-11T15:38:17.070162114Z\" received_at: \"2019-06-11T15:37:09.469101162Z\" received_from: Rest status: InABlock: date: \"4.707\" block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\" Where the InABlock status means that the transaction was accepted in the block with date “4.707” and for block d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174. The status here could also be: Pending : if the transaction is received and is pending being added in the blockchain (or rejected). or Rejected : with an attached message of the reason the transaction was rejected. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Transaction » Checking if the transaction was accepted","id":"144","title":"Checking if the transaction was accepted"},"145":{"body":"Jormungandr supports decentralized voting with privacy features. The voting process is controlled by a committee whose private keys can be used to decrypt and certify the tally.","breadcrumbs":"Core Ledger » jcli » Voting » Voting","id":"145","title":"Voting"},"146":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Creating committee keys","id":"146","title":"Creating committee keys"},"147":{"body":"Please refer to jcli votes committee --help for help with the committee related cli operations and specification of arguments. In this example we will be using 3 kind of keys for the private vote and tallying. In order: Committee communication key jcli votes committee communication-key generate > ./comm.sk We can get its public representation with: jcli votes committee communication-key to-public --input ./comm.sk > ./comm.pk Committee member key jcli votes committee member-key generate --threshold 3 --crs \"$crs\" --index 0 --keys pk1 pk2 pk3 > ./member.sk Where pkX are each of the committee communication public keys in bech32 format. The order of the keys shall be the same for every member invoking the command, and the --index parameter provides the 0-based index of the member this key is generated for. Note that all committee members shall use the same CRS . We can also easily get its public representation as before: jcli votes committee member-key to-public --input ./member.sk ./member.pk Election public key This key ( public ) is the key every vote should be encrypted with. jcli votes election-key --keys mpk1 mpk2 mpk3 > ./vote.pk Notice that we can always rebuild this key with the committee member public keys found within the voteplan certificate . jcli rest v0 vote active plans > voteplan.json","breadcrumbs":"Core Ledger » jcli » Voting » Private","id":"147","title":"Private"},"148":{"body":"We need to provide a vote plan definition file to generate a new voteplan certificate. That file should be a yaml (or json) with the following format: { \"payload_type\": \"private\", \"vote_start\": { \"epoch\": 1, \"slot_id\": 0 }, \"vote_end\": { \"epoch\": 3, \"slot_id\": 0 }, \"committee_end\": { \"epoch\": 6, \"slot_id\": 0 }, \"proposals\": [ { \"external_id\": \"d7fa4e00e408751319c3bdb84e95fd0dcffb81107a2561e691c33c1ae635c2cd\", \"options\": 3, \"action\": \"off_chain\" }, ... ], \"committee_member_public_keys\": [ \"pk....\", ]\n} Where: payload_type is either public or private commitee_public_keys is only needed for private voting, can be empty for public. Then, we can generate the voteplan certificate with: jcli certificate new vote-plan voteplan_def.json --output voteplan.certificate","breadcrumbs":"Core Ledger » jcli » Voting » Creating a vote plan","id":"148","title":"Creating a vote plan"},"149":{"body":"To generate a vote cast transaction: firstly you need to generate vote-cast certificate following this instructions . Storing it into the ’vote-cast.certificate` now you can generate a transaction following this intructions . Note that a valid vote cast transaction MUST have only: one input with the corresponding account of the voter zero outputs 1 corresponding witness. Example (voter.sk contains a private key of the voter): genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\nvoter_addr=$(jcli address account $(jcli key to-public < voter.sk))\nvoter_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-cast public --choice 0 --proposal-index 0 --vote-plan-id \"$vote_plan_id\" --output vote-cast.certificate\njcli transaction new --staging vote-cast.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-cast.staging\njcli transaction add-certificate $(< vote-cast.certificate) --staging vote-cast.staging\njcli transaction finalize --staging vote-cast.staging\njcli transaction data-for-witness --staging vote-cast.staging > vote-cast.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter\n\"$voter_addr_counter\" $(< vote-cast.witness-data) vote-cast.witness committee.sk\njcli transaction seal --staging vote-cast.staging\njcli transaction to-message --staging vote-cast.staging > vote-cast.fragment\njcli rest v0 message post --file vote-cast.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Casting votes","id":"149","title":"Casting votes"},"15":{"body":"The blockchain has two methods of accounting which are interoperable: Unspent Transaction Output (UTXO) Accounts UTXO behaves like cash/notes, and work like fixed denomination ticket that are cumulated. This is the accounting model found in Bitcoin. A UTXO is uniquely reference by its transaction ID and its index. Accounts behaves like a bank account, and are simpler to use since exact amount can be used. This is the accounting model found in Ethereum. An account is uniquely identified by its public key. Each inputs could refer arbitrarily to an account or a UTXO, and similarly each outputs could refer to an account or represent a new UTXO. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Accounting","id":"15","title":"Accounting"},"150":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Tallying","id":"150","title":"Tallying"},"151":{"body":"To tally public votes, a single committee member is sufficient. In the example below, the file committee.sk contains the committee member’s private key in bech32 format, and block0.bin contains the genesis block of the voting chain. genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\ncommittee_addr=$(jcli address account $(jcli key to-public < committee.sk))\ncommittee_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-tally --vote-plan-id \"$vote_plan_id\" --output vote-tally.certificate\njcli transaction new --staging vote-tally.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-tally.staging\njcli transaction add-certificate $(< vote-tally.certificate) --staging vote-tally.staging\njcli transaction finalize --staging vote-tally.staging\njcli transaction data-for-witness --staging vote-tally.staging > vote-tally.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter \\ \"$committee_addr_counter\" $(< vote-tally.witness-data) vote-tally.witness committee.sk\njcli transaction add-witness --staging vote-tally.staging vote-tally.witness\njcli transaction seal --staging vote-tally.staging\njcli transaction auth --staging vote-tally.staging --key committee.sk\njcli transaction to-message --staging vote-tally.staging > vote-tally.fragment\njcli rest v0 message post --file vote-tally.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Public vote plan","id":"151","title":"Public vote plan"},"152":{"body":"To tally private votes, all committee members are needed. The process is similar to the public one, but we need to issue different certificates. First, we need to retrieve vote plans info: jcli rest v0 vote active plans > active_plans.json If there is more than one vote plan in the file, we also need to provide the id of the vote plan we are interested in. We can get the id of the first vote plan with: ...\nvote_plan_id=$(cat active_plans.json |jq '.[0].id')\n... Each committee member needs to generate their shares for the vote plan, which we will use later to decrypt the tally. jcli votes tally decryption-shares --vote-plan active_plans.json --vote-plan-id $\"vote_plan_id\" --key member.sk --output-format json Then, the committee members need to exchange their shares (only one full set of shares is needed). Once all shares are available, we need to merge them in a single file with the following command (needed even if there is only one set of shares): jcli votes tally merge-shares share_file1 share_file2 ... > merged_shares.json With the merged shares file, we are finally able to process the final tally result as follows: jcli votes tally decrypt-results \\\n--vote-plan active_plans.json \\\n--vote-plan-id $\"vote_plan_id\" \\\n--shares merged_shares.json \\\n--threshold number_of_committee_members \\\n--output-format json > result.json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Voting » Private vote plan","id":"152","title":"Private vote plan"},"153":{"body":"Here we will describe how to: delegate your stake to a stake pool - so that you can participate to the consensus and maybe collect rewards for that. register a stake pool retire a stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Staking with Jörmungandr » Staking with Jörmungandr","id":"153","title":"Staking with Jörmungandr"},"154":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » Delegating your stake","id":"154","title":"Delegating your stake"},"155":{"body":"Stake is concentrated in accounts, and you will need account public key to delegate its associated stake.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to create the delegation certificate","id":"155","title":"how to create the delegation certificate"},"156":{"body":"You will need: the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new owner-stake-delegation STAKE_POOL_ID --output stake_delegation.cert Note that the certificate is in blaco, there’s no account key used for its creation. In order for delegation to work it must be submitted to a node inside a very specific transaction: Transaction must have exactly 1 input The input must be from account The input value must be strictly equal to fee of the transaction Transaction must have 0 outputs The account used for input will have its stake delegated to the stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for own account","id":"156","title":"for own account"},"157":{"body":"You will need: account public key: a bech32 string of a public key the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new stake-delegation ACCOUNT_PUBLIC_KEY STAKE_POOL_ID --output stake_delegation.cert","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for any account","id":"157","title":"for any account"},"158":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_delegation.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key account_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » submitting to a node","id":"158","title":"submitting to a node"},"159":{"body":"This procedure is needed only for certificates that are to be included in the genesis config file. We need to make sure that the owner of the account is authorizing this delegation to happens, and for that we need a cryptographic signature. We will need the account secret key to create a signature jcli certificate sign --certificate stake_delegation.cert --key account_key.prv --output stake_delegation.signedcert The content of stake_delegation.signedcert will be something like: signedcert1q9uxkxptz3zx7akmugkmt4ecjjd3nmzween2qfr5enhzkt37tdt4uqt0j0039z5048mu9ayv3ujep5sl28q2cpdnx9fkvpq30lmjrrgtmqqctzczvu6e3v65m40n40c3y2pnu4vhd888dygkrtnfm0ts92fe50jy0h0ugh6wlvgy4xvr3lz4uuqzg2xgu6vv8tr24jrwhg0l09klp5wvwzl5 and can now be added in the genesis config file. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to sign your delegation certificate","id":"159","title":"how to sign your delegation certificate"},"16":{"body":"Jörmungandr network capabilities are split into: the REST API, used for informational queries or control of the node; the gRPC API for blockchain protocol exchange and participation; Here we will only review the gRPC API as the REST API is described in another chapter: go to the REST documentation","breadcrumbs":"Core Ledger » General Concepts » Network overview » Network overview","id":"16","title":"Network overview"},"160":{"body":"There are multiple components to be aware of when running a stake pool: your NodeId: it is the identifier within the blockchain protocol (wallet will delegate to your stake pool via this NodeId); your [ VRF ] key pairs: this is the cryptographic material we will use to participate to the leader election; your KES key pairs: this is the cryptographic material we will use to sign the block with. the stake pool Tax : the value the stake pool will take from the total reward due to the stake pool before distributing rewards (if any left) to the delegators. So in order to start your stake pool you will need to generate these objects.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Registering a stake pool","id":"160","title":"Registering a stake pool"},"161":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The primitives","id":"161","title":"The primitives"},"162":{"body":"To generate your [ VRF ] Key pairs, we will utilise jcli as described here : jcli key generate --type=RistrettoGroup2HashDhH stake_pool_vrf.prv stake_pool_vrf.prv file now contains the VRF private key. jcli key to-public --input stake_pool_vrf.prv stake_pool_vrf.pub stake_pool_vrf.pub file now contains the VRF public key.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » VRF key pair","id":"162","title":"VRF key pair"},"163":{"body":"Similar to above: jcli key generate --type=SumEd25519_12 stake_pool_kes.prv stake_pool_kes.prv file now contains the KES private key jcli key to-public --input stake_pool_kes.prv stake_pool_kes.pub stake_pool_kes.pub file now contains the KES public key","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » KES key pair","id":"163","title":"KES key pair"},"164":{"body":"There are 3 values you can set to configure the stake pool’s Tax : tax-fixed: this is the fixed cut the stake pool will take from the total reward due to the stake pool; tax-ratio: this is the percentage of the remaining value that will be taken from the total due tax-limit: a value that can be set to limit the pool’s Tax . All of these values are optionals, if not set, they will be set to 0. This will mean no tax for the stake pool: rewards are all distributed to the delegators.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Choosing the Tax parameters","id":"164","title":"Choosing the Tax parameters"},"165":{"body":"Let say you control a stake pool SP, with 2 owners (O1 and O2). During epoch 1, SP has created some blocks and is entitled to receive 10_000. Before distributing the 10_000 among the delegators, SP will take its Tax . we extract the tax-fixed. If this is greater or equal to the total (10_000) then we stop there, there is no more rewards to distribute. with what remains the SP extracts its tax-ratio and checks the tax from the ratio is not greater than tax-limit. the total SP rewards will then be distributed equally to the owners (O1 and O2). Note that if the --reward-account is set, the rewards for SP are then distributed to that account and nothing to O1 and O2. For example: total fixed ratio limit SP O1 O2 for delegators takes 100% 10000 0 1/1 0 10000 5000 5000 0 fixed of 1000 10000 1000 0/1 0 1000 500 500 9000 fixed + 10% 2000 1000 1/10 0 1100 550 550 900 fixed + 20% up to 150 2000 1000 1/5 150 1150 575 575 850","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » So how does this works","id":"165","title":"So how does this works"},"166":{"body":"--tax-limit The maximum tax value the stake pool will take. This will set the maximum the stake pool value will reserve for themselves from the `--tax-ratio` (excluding `--tax-fixed`).\n--tax-ratio The percentage take of the stake pool. Once the `tax-fixed` has been take, this is the percentage the stake pool will take for themselves. [default: 0/1]\n--tax-fixed set the fixed value tax the stake pool will reserve from the reward For example, a stake pool may set this value to cover their fixed operation costs. [default: 0]","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The options to set","id":"166","title":"The options to set"},"167":{"body":"The certificate is what will be sent to the blockchain in order to register yourself to the other participants of the blockchain that you are a stake pool too. jcli certificate new stake-pool-registration \\ --kes-key $(cat stake_pool_kes.pub) \\ --vrf-key $(cat stake_pool_vrf.pub) \\ --start-validity 0 \\ --management-threshold 1 \\ --tax-fixed 1000000 \\ --tax-limit 1000000000 \\ --tax-ratio \"1/10\" \\ --owner $(cat owner_key.pub) > stake_pool.cert The --operator flag is optional. And now you can retrieve your stake pool id (NodeId): jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » creating a stake pool certificate","id":"167","title":"creating a stake pool certificate"},"168":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_pool.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » submitting to a node","id":"168","title":"submitting to a node"},"169":{"body":"Stake pool can be retired by sending transaction with retirement certificate. From technical stand point, it is very similar to register stake pool operation. Before start we need to be sure, that: you have sufficient amount of ada to pay fee for transaction with retirement certificate. you know your stake pool id.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retiring a stake pool","id":"169","title":"Retiring a stake pool"},"17":{"body":"The protocol is based on gRPC that combines commonly used protocols like HTTP/2 and RPC. More precisely, Jörmungandr utilises. This choice was made because gRPC is already widely supported around the world because of it’s uitilization of standard protocols HTTP/2 which makes it much easier for Proxies and Firewalls to recognise the protocol and permit the traffic.","breadcrumbs":"Core Ledger » General Concepts » Network overview » The protocol","id":"17","title":"The protocol"},"170":{"body":"To retrieve your stake pool id: jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retrieve stake pool id","id":"170","title":"Retrieve stake pool id"},"171":{"body":"The certificate is what will be sent to the blockchain in order to retire your stake pool. jcli certificate new stake-pool-retirement \\ --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 \\ --retirement-time 0 \\ retirement.cert where: retirement.cert - write the output of to the retirement.cert --retirement-time 0 - 0 means as soon as possible. Which is until the next following epoch. --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 - hex-encoded stake pool ID.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » creating a retirement certificate","id":"171","title":"creating a retirement certificate"},"172":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat retirement.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. Important ! Please be sure that you have sufficient amount of owners signatures in order to retire stake pool. At least half of owners singatures (which were provided when registering stake pool) are required to sign retirement certificate. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » submitting to a node","id":"172","title":"submitting to a node"},"173":{"body":"This section is meant for advanced users and developers of the node, or if you wish to learn more about the node. At the moment, it only covers details on how to create your own blockchain genesis configuration, but in normal case, the blockchain configuration should be available with the specific blockchain system.","breadcrumbs":"Core Ledger » Advanced » Advanced » Advanced","id":"173","title":"Advanced"},"174":{"body":"The genesis file is the file that allows you to create a new blockchain from block 0. It lays out the different parameters of your blockchain: the initial utxo, the start time, the slot duration time, etc… Example of a BFT genesis file with an initial address UTxO and an account UTxO. More info regarding starting a BFT blockchain here and regarding addresses there . You could also find information regarding the jcli genesis tooling . You can generate a documented pre-generated genesis file: jcli genesis init For example your genesis file may look like: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch block0_date: {default_block0_date} # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' instead. # # otherwise leave as this discrimination: {discrimination} # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis block0_consensus: bft # Number of slots in each epoch. # # default value is {default_slots_per_epoch} slots_per_epoch: {default_slots_per_epoch} # The slot duration, in seconds, is the time between the creation # of 2 blocks # # default value is {default_slot_duration} slot_duration: {default_slot_duration} # set the block content max size # # This is the size, in bytes, of all the contents of the block (excluding the # block header). # # default value is {default_block_content_max_size} block_content_max_size: {default_block_content_max_size} # A list of Ed25519 PublicKey that represents the # BFT leaders encoded as bech32. The order in the list matters. consensus_leader_ids: - {leader_1} - {leader_2} # Epoch stability depth # # Optional: default value {default_epoch_stability_depth} epoch_stability_depth: {default_epoch_stability_depth} # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1] # # default value: {default_consensus_genesis_praos_active_slot_coeff} consensus_genesis_praos_active_slot_coeff: {default_consensus_genesis_praos_active_slot_coeff} # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate] linear_fees: # this is the minimum value to pay for every transaction constant: 2 # the additional fee to pay for every inputs and outputs coefficient: 1 # the additional fee to pay if the transaction embeds a certificate certificate: 4 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: # certificate_owner_stake_delegation: 1 # Proposal expiration in epochs # # default value: {default_proposal_expiration} proposal_expiration: {default_proposal_expiration} # The speed to update the KES Key in seconds # # default value: {default_kes_update_speed} kes_update_speed: {default_kes_update_speed} # Set where to send the fees generated by transactions activity. # # by default it is send to the \"rewards\" pot of the epoch which is then # distributed to the different stake pools who created blocks that given # epoch. # # It is possible to send all the generated fees to the \"treasury\". # # Optional, default is \"rewards\" # fees_go_to: \"rewards\" # initial value the treasury will start with, if not set the treasury # starts at 0 treasury: 1000000000000 # set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document # # if not set, the treasury will not grow treasury_parameters: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # It is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: # max_limit: 10000 # Set the total reward supply available for monetary creation # # if not set there is no monetary creation # once emptied, there is no more monetary creation total_reward_supply: 100000000000000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate) # reward_parameters: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 100 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: \"13/19\" # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 1 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 3 # set some reward constraints and limits # # this value is optional, the default is no constraints at all. The settings # are commented below: # #reward_constraints: # # limit the epoch total reward drawing limit to a portion of the total # # active stake of the system. # # # # for example, if set to 10%, the reward drawn will be bounded by the # # 10% of the total active stake. # # # # this value is optional, the default is no reward drawing limit # reward_drawing_limit_max: \"10/100\" # # # settings to incentivize the numbers of stake pool to be registered # # on the blockchain. # # # # These settings does not prevent more stake pool to be added. For example # # if there is already 1000 stake pools, someone can still register a new # # stake pool and affect the rewards of everyone else too. # # # # if the threshold is reached, the pool doesn't really have incentive to # # create more blocks than 1 / set-value-of-pools % of stake. # # # # this value is optional, the default is no pool participation capping # pool_participation_capping: # min: 300 # max: 1000 # list of the committee members, they will be used to guarantee the initial # valid operation of the vote as well as privacy. committees: - \"7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19\" - \"f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db\" # Initial state of the ledger. Each item is applied in order of this list\ninitial: # Initial deposits present in the blockchain - fund: # UTxO addresses or account - address: {initial_funds_address_1} value: 10000 - address: {initial_funds_address_2} value: 10000 # Initial token distribution - token: token_id: 00000000000000000000000000000000000000000000000000000000.7e5d6abc to: - address: {initial_funds_address_1} value: 150 - address: {initial_funds_address_2} value: 255 - token: token_id: 00000000000000000000000000000000000000000000000000000000.6c1e8abc to: - address: {initial_funds_address_1} value: 22 - address: {initial_funds_address_2} value: 66 # Initial certificates #- cert: .. # Initial deposits present in the blockchain #- legacy_fund: # # Legacy Cardano address # - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 # value: 123 There are multiple parts in the genesis file: blockchain_configuration: this is a list of configuration parameters of the blockchain, some of which can be changed later via the update protocol; initial: list of steps to create initial state of ledger","breadcrumbs":"Core Ledger » Advanced » genesis file » genesis file","id":"174","title":"genesis file"},"175":{"body":"option format description block0_date number the official start time of the blockchain, in seconds since UNIX EPOCH discrimination string production or test block0_consensus string bft slot_duration number the number of seconds between the creation of 2 blocks epoch_stability_depth number allowed size of a fork (in number of block) consensus_leader_ids array the list of the BFT leader at the beginning of the blockchain block_content_max_size number the maximum size of the block content (excluding the block header), in bytes. linear_fees object linear fee settings, set the fee for transaction and certificate publishing consensus_genesis_praos_active_slot_coeff number genesis praos active slot coefficient. Determines minimum stake required to try becoming slot leader, must be in range (0,1] kes_update_speed number the speed to update the KES Key in seconds slots_per_epoch number number of slots in each epoch for more information about the BFT leaders in the genesis file, see Starting a BFT Blockchain","breadcrumbs":"Core Ledger » Advanced » genesis file » blockchain_configuration options","id":"175","title":"blockchain_configuration options"},"176":{"body":"Each entry can be one of 3 variants: variant format description fund sequence initial deposits present in the blockchain (up to 255 outputs per entry) cert string initial certificate legacy_fund sequence same as fund, but with legacy Cardano address format Example: initial: - fund: - address:
value: 10000 - address: value: 20000 - address: value: 30000 - cert: - legacy_fund: - address: value: 123 - fund: - address: value: 1001","breadcrumbs":"Core Ledger » Advanced » genesis file » initial options","id":"176","title":"initial options"},"177":{"body":"variant format description address string can be a single address or an account address value number assigned value legacy_fund differs only in address format, which is legacy Cardano Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » genesis file » fund and legacy_fund format","id":"177","title":"fund and legacy_fund format"},"178":{"body":"BFT stands for the Byzantine Fault Tolerant ( read the paper ). Jormungandr allows you to start a BFT blockchain fairly easily. The main downside is that it is centralized, only a handful of nodes will ever have the right to create blocks.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » starting a bft node","id":"178","title":"starting a bft node"},"179":{"body":"It is fairly simple. A given number of Nodes (N) will generate a key pairs of type Ed25519 (see JCLI’s Keys ). They all share the public key and add them in the genesis.yaml file. It is the source of truth, the file that will generate the first block of the blockchain: the Block 0 . Then, only by one after the other, each Node will be allowed to create a block. Utilising a Round Robin algorithm.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » How does it work","id":"179","title":"How does it work"},"18":{"body":"The protocol allows you to send multiple types of messages between nodes: sync block to remote peer’s Last Block (tip). propose new fragments (new transactions, certificates, …): this is for the fragment propagation. propose new blocks: for block propagation. There are other commands that optimise the communication and synchronization between nodes that will be documented here in the future. Another type of messages is the Gossip message. These gossip messages allow Nodes to exchange information (gossips) about other nodes on the network, allowing for peer discovery.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Type of queries","id":"18","title":"Type of queries"},"180":{"body":"blockchain_configuration: block0_date: 1550822014 discrimination: test block0_consensus: bft slots_per_epoch: 5 slot_duration: 15 epoch_stability_depth: 10 consensus_leader_ids: - ed25519e_pk1k3wjgdcdcn23k6dwr0cyh88ad7a4ayenyxaherfazwy363pyy8wqppn7j3 - ed25519e_pk13talprd9grgaqzs42mkm0x2xek5wf9mdf0eefdy8a6dk5grka2gstrp3en consensus_genesis_praos_active_slot_coeff: 0.22 linear_fees: constant: 2 coefficient: 1 certificate: 4 kes_update_speed: 43200\ninitial: - fund: - address: ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0 value: 10000 - cert: cert1qgqqqqqqqqqqqqqqqqqqq0p5avfqqmgurpe7s9k7933q0wj420jl5xqvx8lywcu5jcr7fwqa9qmdn93q4nm7c4fsay3mzeqgq3c0slnut9kns08yn2qn80famup7nvgtfuyszqzqrd4lxlt5ylplfu76p8f6ks0ggprzatp2c8rn6ev3hn9dgr38tzful4h0udlwa0536vyrrug7af9ujmrr869afs0yw9gj5x7z24l8sps3zzcmv - legacy_fund: - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 value: 123 In order to start your blockchain in BFT mode you need to be sure that: consensus_leader_ids is non empty; more information regarding the genesis file here .","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Example of genesis file","id":"180","title":"Example of genesis file"},"181":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin This command will create (or replace) the Block 0 of the blockchain from the given genesis configuration file (genesis.yaml).","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Creating the block 0","id":"181","title":"Creating the block 0"},"182":{"body":"Now that the blockchain is initialized, you need to start your node. Write your private key in a file on your HD: $ cat node_secret.yaml\nbft: signing_key: ed25519_sk1hpvne... Configure your Node (config.yml) and run the following command: $ jormungandr --genesis-block block-0.bin \\ --config example.config \\ --secret node_secret.yaml It’s possible to use the flag --secret multiple times to run a node with multiple leaders.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Starting the node","id":"182","title":"Starting the node"},"183":{"body":"Generate initial config jcli genesis init > genesis.yaml Generate secret key, e.g. jcli key generate --type=Ed25519 > key.prv Put secret key in a file, e.g. node_secret.yaml as follows: bft:\nsigning_key: ed25519_sk1kppercsk06k03yk4qgea.... Generate public key out of previously generated key cat key.prv | jcli key to-public Put generated public key as in genesis.yaml under consensus_leader_ids: Generate block = jcli genesis encode --input genesis.yaml --output block-0.bin Create config file and store it on your HD as node.config e.g. -> ---\nlog: level: trace format: json\nrest: listen: \"127.0.0.1:8607\"\np2p: public_address: /ip4/127.0.0.1/tcp/8606 topics_of_interest: messages: low blocks: normal Start Jörmungandr node : jormungandr --genesis-block block-0.bin --config node.config --secret node_secret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Step by step to start the BFT node","id":"183","title":"Step by step to start the BFT node"},"184":{"body":"Additionally, there is a script here that can be used to bootstrap a test node with bft consensus protocol. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Script","id":"184","title":"Script"},"185":{"body":"When starting a genesis praos blockchain there is an element to take into consideration while constructing the block 0: the stake distribution . In the context of Genesis/Praos the network is fully decentralized and it is necessary to think ahead about initial stake pools and to make sure there is stake delegated to these stake pools. In your genesis yaml file, make sure to set the following values to the appropriate values/desired values: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: block0_consensus: genesis_praos consensus_genesis_praos_active_slot_coeff: 0.1 kes_update_speed: 43200 # 12hours block0_consensus set to genesis_praos means you want to start a blockchain with genesis praos as the consensus layer. consensus_genesis_praos_active_slot_coeff determines minimum stake required to try becoming slot leader, must be in range 0 exclusive and 1 inclusive.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » starting a genesis blockchain","id":"185","title":"starting a genesis blockchain"},"186":{"body":"In the initial_certs field you will set the initial certificate. It is important to declare the stake pool and delegate stake to them. Otherwise no block will ever be created. Remember that in this array the order matters: In order to delegate your stake, you need a stake pool to already exist, so the stake pool registration certificate should go first.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » The initial certificates","id":"186","title":"The initial certificates"},"187":{"body":"Now you can register a stake pool. Follow the instructions in registering stake pool guide . The owner key (the key you sign the stake pool registration certificate) is the secret key associated to a previously registered stake key.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Stake pool registration","id":"187","title":"Stake pool registration"},"188":{"body":"Now that there is both your stake key and there are stake pools available in the block0 you need to delegate to one of the stake pool. Follow the instruction in delegating stake . And in the initial funds start adding the addresses. To create an address with delegation follow the instruction in JCLI’s address guide . Utilise the stake key registered previously as group address: jcli address single $(cat wallet_key.pub) $(cat stake_key.pub)\nta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm You will notice that addresses with delegation are longer (about twice longer) than addresses without delegation. For example, the most minimal setting you may have is: initial_certs: # register a stake pool (P), owner of the stake pool is the stake key (K) - cert1qsqqqqqqqqqqqqqqqqqqq0p5avfqp9tzusr26chayeddkkmdlap6tl23ceca8unsghc22tap8clhrzslkehdycufa4ywvqvs4u36zctw4ydtg7xagprfgz0vuujh3lgtxgfszqzqj4xk4sxxyg392p5nqz8s7ev5wna7eqz7ycsuas05mrupmdsfk0fqqudanew6c0nckf5tsp0lgnk8e8j0dpnxvjk2usn52vs8umr3qrccegxaz # delegate stake associated to stake key (K) to stake pool (P) - cert1q0rv4ccl54k99rtnm39xvhwvqcwjcm385n2dwvamahpu5tmdz3plt65rpewev3a03xj7nfx5pz0xap2cjxjnxvt2ma9y9dalzder3xm5qyqyq0lx05ggrws0ghuffqrg7scqzdsd665v4m7087eam5zvw4f26v2tsea3ujrxly243sgqkn42uttk5juvq78ajvfx9ttcmj05lfuwtq9qhdxzr0 initial_funds: # address without delegation - address: ta1swx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjsczt057x value: 10000 # address delegating to stake key (K) - address: ta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm value: 1000000","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Delegating stake","id":"188","title":"Delegating stake"},"189":{"body":"Now, to start the node and be able to generate new blocks, you have to put your pool’s private keys and id in a file. Then start the node with the --secret filename parameter. For example, if you follow the examples of the registering stake pool guide You could create a file called poolsecret.yaml with the following content. genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file And you could start the node with this command jormungandr --genesis-block block-0.bin --config config.yaml --secret poolsecret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Starting the node","id":"189","title":"Starting the node"},"19":{"body":"The peer 2 peer connections are established utilising multiple components: A multilayered topology (e.g. Poldercast ); Gossiping for node discoverability; Subscription mechanism for event propagation; Security and countermeasures: (such as Topology Policy for scoring and/or blacklisting nodes);","breadcrumbs":"Core Ledger » General Concepts » Network overview » Peer to peer","id":"19","title":"Peer to peer"},"190":{"body":"There is a script here that can be used to bootstrap a test node with a pre-set faucet and stake pool and can be used as an example. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Test script","id":"190","title":"Test script"},"191":{"body":"Please just brain dump everything you know about the above topics, or anything related to them, either individually or interrelated. This process is not intended to consume an excessive amount of your time, so focus more on getting the information you have to contribute down in the quickest way possible. Don’t be overly concerned with format or correctness, its not a test. If you think things work in a particular way, describe it. Obviously, different people will know different things, don’t second guess info and not include it because you think someone else might say it. If you have technical details, like the format of a data entity that can be explained, please include it. This is intended to become a deep dive, to the byte level. If you want to, feel free to x-ref the code as well. Add what you know (if anything) in the section below your name and submit a PR to the DOCS branch (not main) with Steven Johnson for review. I will both review and merge these. I will also start collating the data once this process is complete, and we can then iterate until the picture is fully formed and accurate. Feel free to include other .md files if there is a big piece of information, such as the format of a vote transaction, or the vote plan section of block 0, etc. Or refer to other documentation we may already have (in any form, eg confluence, jira issue or Miro, or the old repos or Anywhere else is ok.). For Jormungandr, we are particularly interested in: How the vote plan is set up, what the various fields of the vote plan are and how they are specified. 2. How individual votes relate to vote-plans. 3. How votes are prevented from being cast twice by the same voter. 4. The format of the entire vote transaction, both public and private. 5. How is the tally conducted? (is it done in Jormungandr, or with the jcli tool for example)? 6. Anything else which is not listed but is necessary to fully understand the votes cast in Jormungandr. Don’t feel limited by this list, if there is anything else the list doesn’t cover but you want to describe it, please do.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate","id":"191","title":"How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate"},"192":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Sasha Prokhorenko","id":"192","title":"Sasha Prokhorenko"},"193":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Nicolo Padovani","id":"193","title":"Nicolo Padovani"},"194":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Felipe Rosa","id":"194","title":"Felipe Rosa"},"195":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Joaquin Rosales","id":"195","title":"Joaquin Rosales"},"196":{"body":"This field is not very well documented, except for a line in book/src/core-vitss-doc/api/v0.yaml that describes it as: > Identifier of the proposal on the blockchain. Internally, the identifier is of type ExternalProposalId (src/chain-libs/chain-impl-mockchain/src/certificate/vote_plan.rs). This is an alias type for DigestOf, from the chain_crypto crate. This is undocumented. The ExternalProposalId is sent through the wire and csv files as a 64-character hex-encoded string. The catalyst-toolbox binary decodes this hex string, and converts it into a valid ExternalProposalId. So that the underlying [u8; 32] can be extracted, hashed and used in logic related to rewards thresholds, votes, and dreps. There is an arbitrary snapshot generator used in vit-servicing-station-tests. It creates valid ExternalProposalId from a randomized [u8; 32] array that is used in integration tests found in vit-testing.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Proposal.chain_proposal_id","id":"196","title":"Proposal.chain_proposal_id"},"197":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefano Cunego","id":"197","title":"Stefano Cunego"},"198":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Conor Gannon","id":"198","title":"Conor Gannon"},"199":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Alex Pozhylenkov","id":"199","title":"Alex Pozhylenkov"},"2":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Introduction » What is Catalyst-Core","id":"2","title":"What is Catalyst-Core"},"20":{"body":"As described in the Poldercast paper, our network topology is built on multiple layers that allow for granular control of it’s behavior. In practice this means a node will have different groups of nodes that it connects to based on different algorithms, each of these groups are a subset of the whole known list of nodes. In short we have: The rings layer selects a predecessor(s) and a successor(s) for each topic (Fragment or Blocks); The Vicinity layer will select nodes that have similar interests; The Cyclon layer, will select nodes randomly. However, we keep the option open to remove some of these layers or to add new ones, such as: A layer to allow privilege connections between stake pools; A layer for the user’s whitelist, a list of nodes the users considered trustworthy and that we could use to check in the current state of the network and verify the user’s node is not within a long running fork;","breadcrumbs":"Core Ledger » General Concepts » Network overview » Multilayered topology","id":"20","title":"Multilayered topology"},"200":{"body":"Spending counter associated to an account. Every time the owner is spending from an account, the counter is incremented. This features is similar to the Ethereum nonce field in the block and prevents from the replay attack. pub struct SpendingCounter(pub(crate) u32); As it was said before every account associated with the a current state of the Spending Counter. Or to be more precised to an array of 8 Spending counters. pub struct SpendingCounterIncreasing { nexts: Vec,\n} Each spending counter differers with each other. The specified lane bits are a first 3 bits of the original Spending counter value. Spending counter structure: (001)[lane] (00000 00000000 00000000 00000001){counter}\n(00100000 00000000 00000000 00000001){whole Spending Counter} With such approach user can: generate up to 8 transactions with the specified different lanes and corresponding counters submit it into the blockchain with no matter on the transaction processing order. So incrementing of the counter will be done in “parallel” for each lane. That is the only difference with the original Ethereum approach with nonce (counter in our implementation). Where for each transaction you should specify an exact value and submits transaction in the exact order.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Spending Counters","id":"200","title":"Spending Counters"},"201":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Cameron Mcloughlin","id":"201","title":"Cameron Mcloughlin"},"202":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Dariusz Kijania","id":"202","title":"Dariusz Kijania"},"203":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Ognjen Dokmanovic","id":"203","title":"Ognjen Dokmanovic"},"204":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefan Rasevic","id":"204","title":"Stefan Rasevic"},"205":{"body":"This directory contains Jormungandr’s specifications. file content network the node to node communication and the peer to peer topology","breadcrumbs":"Core Ledger » Jormungandr Specifications » Jormungandr Specifications » Jormungandr Specifications","id":"205","title":"Jormungandr Specifications"},"206":{"body":"This is the migration plan for current cardano blockchain (henceforth refered as legacy) to jormungandr style state and formats.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » MIGRATION","id":"206","title":"MIGRATION"},"207":{"body":"Block Zero: first/genesis block of the blockchain.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Vocabulary","id":"207","title":"Vocabulary"},"208":{"body":"It’s paramount for all users from the legacy chain to find their precious data after the migration. Also as one secondary consideration, the users need not to be aware, as much as possible of the transition, apart from requiring new or updated software capable of handling the new formats and processes. Lastly, it would be useful to provide some kind of cryptographic continuinity of the chains, increasing assurances during transition. The first thing that need consideration is the legacy utxos. We need the ability to take the latest known state of coin distribution and transfer this as is to the new state order. The settings of the legacy chain, are automatically superseded by the new settings mandatory in block zero, so there’s no need to keep any related data. The heavy/light delegation certificates are also superseded by either the BFT leaders or the Genesis-Praos stake pools defined explicitely in block zero. From a user experience and offering continuinity of history, it would be preferable to start the chain initial date at the end of the legacy one. This way the user can still refer to historical transaction in the legacy era of the chain without seeing similar block date on two different era. Finally it’s important to provide as much guarantee as possible of the transition, and hence knowing the hash of last block of the legacy chain on “the other side”, would allow some validation mechanism. Block 0 content being a trusted data assumption, having the previous hash embedded directly inside, reconstruct the inherent chain of trust of a blockchain cheaply.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Description","id":"208","title":"Description"},"209":{"body":"To support this, the following continuinity mechanisms are thus available: blockchain continuity: the ability to embed inside block zero of the chain an arbitrary hash of data, representing the last block of the legacy chain. user experience: block zero choice of start of epoch (e.g. starting the new chain at epoch 129). legacy funds: A sequence of legacy address and their associated values Note: On the blockchain continuity, we decided to store the hash as an opaque blob of data in the content, instead of using the normal blockchain construction of the previous hash. Using the previous hash, would have made the start condition of the blockchain harder to detect compared to the sentinel 0 value currently in place and would have forced to have an identical hash size by construction. The legacy funds are automatically assigned a new transaction-id / index in the new system, compared to whichever computed transaction-id / index in the legacy chain. This new transaction-id is computed similarly from normal transaction in the new system, and no special case has been added to support this. However the legacy address is stable across this transition, allowing user to find their funds on whichever address it was left, at the value it was left.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mechanisms","id":"209","title":"Mechanisms"},"21":{"body":"Gossiping is the process used for peer discovery. It allows two things: For any nodes to advertise themselves as discoverable; To discover new nodes via exchanging a list of nodes (gossips); The gossips are selected by the different layers of the multilayered topology. For the Poldercast modules, the gossips are selected just as in the paper. Additional modules may select new nodes in the gossip list or may decide to not add any new information.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Gossiping","id":"21","title":"Gossiping"},"210":{"body":"To clearly break from the past, the old funds are only allowed to be consumed, leading to the old state monotonically decreasing. This also prevent from having the old legacy address construction available in witness or outputs. The transaction-id/index system is the same as normal funds, so the inputs doesn’t requires any modification, however we need to distinguish the witness since the witness on the old chain is different. This provide a clear mechanism to distinguish the type of input (fund or old-fund). The witness construction is similar to what is found on the old chain, an extended public key followed by a signature.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Transaction","id":"210","title":"Transaction"},"211":{"body":"Considering the risk involve in such a migration, we can repeatly tests mock migration at arbitrary points (preferably at end of epoch). The migration itself will be fully automated and repeadtly tested for solidity and accuracy, and can be done with mostly off the shelf code that we already have. The migration will capture the latest known state and create the equivalent genesis.yaml file mingled with the settings for the new blockchain, and subsequently compiled into a working block0. The task itself should be completeable in sub-second, leading to a very small window of transition. Although to note, the block0 size is proportional to the number of state point that is being kept; Approximately for ~200000 utxos, 13mb of block zero will be created. rust-cardano’s chain-state is already capable to capture the latest known state, but there’s no currently any genesis generational tool for this task, although the task remain fairly simple.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mainnet-Testnet tests","id":"211","title":"Mainnet-Testnet tests"},"212":{"body":"The net benefits is the total removal of all legacy constructs; The new users or software have no need to handle any of the legacy data. This also provide an implicit net chain “compression”: what happened in Byron, stays in Byron. The legacy addresses are particularly problematic for many reasons not described here, but not providing full usage is particularly advantageous, nonetheless since it provide a way to not have their numbers go up ever after transition.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Advantages","id":"212","title":"Advantages"},"213":{"body":"From historical purpose and bip44 wallets, we need to provide the legacy blocks. The legacy blocks can be made available from a 3rd party service for a one-of 2.0 Gb download (approximate: all the mainnet data), for example using a service like cardano-http-bridge which have caching and CDN capability, leading to a very small cost for the provider of such a service. It’s also possible to provide the historical data as part of the node, supplementing the current interface with an interface to download old data ala cardano-http-bridge. The first option is strongly favored to cleanly break the legacy data from the new data. Legacy randomized wallets (e.g. Ddz addresses) will not need to download the full history, since the legacy address contains the metadata sufficient for recovery, so only block zero is necessary to know their own fund. On the other hand, legacy BIP44 wallets will need to download the full history to be able to recover their BIP44 state at the transition. For wallet history of legacy wallets, the historical data will have to be downloaded too. For new wallet, after the transition, this historical data will not be needed whatsoever, saving 2.0gb of download for new users. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Historical data","id":"213","title":"Historical data"},"214":{"body":"Bringing Ouroboros to the people","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Network","id":"214","title":"Network"},"215":{"body":"This document highlights the requirements we wish to apply to a decentralised network applied to cardano blockchain. Then we will discuss the possible solutions we can provide in a timely manner and the tradeoff we will need to make.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Introduction","id":"215","title":"Introduction"},"216":{"body":"This is a main of general guidelines for the design decision in this document, and to judge the merit of solutions: Efficiency : the communication between the nodes needs to be succinct. to the point, avoiding unnecessary redundancies. The protocol needs to stabilise quickly to a well distributed network, guaranteeing a fast propagation of the important events; Security : limit the ability for other nodes to trigger behavior that would prevent a peer from working (e.g. unbounded resources usage) Simplicity : we need to easily implement the protocol for any platforms or environment that will matter for our users.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design decisions guidelines","id":"216","title":"Design decisions guidelines"},"217":{"body":"This section describes the communication between 2 different peers on the network. It involves synchronous queries with the context of the local state and remote state.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Node communication","id":"217","title":"Node-to-Node communication"},"218":{"body":"This is a general high level list of what information will need to be exchanged: Bootstrap local state from nothing Update local state from an arbitrary point Answer Synchronous queries: RPC style Asynchronous messages for state propagation (transactions, blocks, ..) P2P messages (See P2P Communication)","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » General Functionality","id":"218","title":"General Functionality"},"219":{"body":"User Stories Alice wants to synchronise its local state from Bob from Alice’s Tip: Alice downloads Block Headers from Bob (starting from Alice’s Tip); Bob does not know this Tip: Error: unknown block Alice starts again with a previous Tip; Bob does know this state: Bob streams back the block headers Alice downloads block Since Alice knows the list of Block Headers and the number of blocks to download, Alice can download from multiple peers, requiring to get block stream from different Hash in this list of Block; State: tip_hash, storage Pseudocode (executed by Alice): sync(): bob.get_headers(alice.tip) Alice wants to propagate a transaction to Bob Alice send the transaction hash to Bob Bob replies whether it want to hear more Alice send the transaction to Bob if Bob agrees Alice wants to submit a Block to Bob Alice sends the Header to Bob; Bob replies whether it want to hear more Alice sends the Block to Bob if Bob agrees Alice want to exchange peers with Bob High Level Messages We model everything so that we don’t need any network state machine. Everything is stateless for Handshake: () -> (Version, Hash) This should be the first request performed by the client after connecting. The server responds with the protocol version and the hash of the genesis block. The handshake is used to establish that the remote node has a compatible protocol implementation and serves the right block chain. Tip: () -> Header: Return the header of the latest block known by the peer (also known as at the tip of the blockchain). DD? : Block vs hash: block is large but contain extra useful metadata (slotid, prevhash), whereas hash is small. GetHeaders: ([Hash]) -> [Header]: Fetch the headers (cryptographically verifiable metadata summaries) of the blocks identified by hashes. GetBlocks: ([Hash]) -> [Block]: Like GetHeaders, but returns full blocks. PullBlocksToTip: ([Hash]) -> Stream: Retrieve a stream of blocks descending from one of the given hashes, up to the remote’s current tip. This is an easy way to pull blockchain state from a single peer, for clients that don’t have a need to fiddle with batched GetBlocks requests and traffic distribution among multiple peers. BlockSubscription: (Stream
) -> Stream Establish a bidirectional subscription to send and receive announcements of new blocks and (in the client role) receive solicitations to upload blocks or push the chain of headers. The stream item is a tagged enumeration: BlockEvent: Announce(Header)|Solicit([Hash])|Missing([Hash], Hash) Announce propagates header information of a newly minted block. Solicit requests the client to upload blocks identified by the given hashes using the UploadBlocks request. Missing requests the client to stream the chain of block headers using the given range parameters. The meaning of the parameters is the same as in the PullHeaders request. The client does not need to stream solicitations upwards, as it can request blocks directly with GetBlocks or PullHeaders. The announcements send in either direction are used for both announcing new blocks when minted by this node in the leadership role, and propagating blocks received from other nodes on the p2p network. PullHeaders: ([Hash], Hash) -> Stream
Retrieve a stream of headers for blocks descending from one of the hashes given in the first parameter, up to the hash given in the second parameter. The starting point that is latest in the chain is selected. The client sends this request after receiving an announcement of a new block via the BlockSubscription stream, when the parent of the new block is not present in its local storage. The proposed starting points are selected from locally known blocks with exponentially receding depth. PushHeaders: (Stream
) Streams the chain of headers in response to a Missing event received via the BlockSubscription stream. UploadBlocks: (Stream) Uploads blocks in response to a Solicit event received via the BlockSubscription stream. ContentSubscription: (Stream) -> Stream Establish a bidirectional subscription to send and receive new content for the block under construction. Used for submission of new fragments submitted to the node by application clients, and for relaying of fragment gossip on the network. P2P Messages: see P2P messages section. The protobuf files describing these methods are available in the proto directory of chain-network crate in the chain-libs project repository. Pseudocode chain sync algorithm struct State { ChainState chain_state, HashMap blocks\n} struct ChainState { Hash tip, HashSet ancestors, Utxos ..., ...\n} impl ChainState { Fn is_ancestor(hash) -> bool { self.ancestors.exists(hash) }\n} // Fetch ‘dest_tip’ from `server’ and make it our tip, if it’s better.\nsync(state, server, dest_tip, dest_tip_length) { if is_ancestor(dest_tip, state.chain_state.tip) { return; // nothing to do } // find a common ancestor of `dest_tip` and our tip. // FIXME: do binary search to find exact most recent ancestor n = 0; loop { hashes = server.get_chain_hashes(dest_tip, 2^n, 1); if hashes == [] { ancestor = genesis; break; } ancestor = hashes[0]; if state.chain_state.has_ancestor(ancestor): { break } n++; } // fetch blocks from ancestor to dest_tip, in batches of 1000 // blocks, forwards // FIXME: integer arithmetic is probably off a bit here, but you get the idea. nr_blocks_to_fetch = 2^n; batch_size = 1000; batches = nr_blocks_to_fetch / batch_size; new_chain_state = reconstruct_chain_state_at(ancestor); for (i = batches; i > 0; i--) { // validate the headers ahead of downloading blocks to validate // cryptographically invalid blocks. It is interesting to do that // ahead of time because of the small size of a BlockHeader new_hashes = server.get_chain_hashes(dest_tip, (i - 1) * batch_size, batch_size); new_headers = server.get_headers(new_hashes); if new_headers are invalid { stop; } new_blocks = server.get_blocks(new_hashes).reverse(); for block in new_blocks { new_chain_state.validate_block(block)?; write_block_to_storage(block); } } if new_chain_state.chain_quality() > state.chain_state.chain_quality() { state.chain_state = new_chain_state }\n} Choice of wire Technology We don’t rely on any specific wire protocol, and only require that the wire protocol allow the transfer of the high level messages in a bidirectional way. We chose to use GRPC/Protobuf as initial technology choice: Efficiency : Using Protobuf, HTTP2 , binary protocol Bidirectional : through HTTP2, allowing stream of data. data push on a single established connection. Potential Authentication : Security / Stream atomicity towards malicious MITM Simplicity : Many languages supported ( code generation , wide support ) Language/Architecture Independent : works on everything Protobuf file acts as documentation and are relatively easy to version Connections and bidirectional subscription channels can be left open (especially for clients behind NAT), although we can cycle connections with a simple RCU-like system.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design","id":"219","title":"Design"},"22":{"body":"Based on the multilayered topology, the node will open multiplexed and bi-directional connections (thanks to industry standard gRPC , this comes for free). These bi-directional connections are used to propagate events such as: Gossiping events, when 2 nodes exchange gossips for peer discovery; Fragment events, when a node wants to propagate a new fragment to other nodes; Block events, when a node wants to propagate a new block creation event","breadcrumbs":"Core Ledger » General Concepts » Network overview » Subscription mechanism","id":"22","title":"Subscription mechanism"},"220":{"body":"Client are different from the node, in the sense that they may not be reachable by other peers directly. However we might consider non reachable clients to keep an open connections to a node to received events. TBD ReceiveNext : () -> Event Another solution would be use use libp2p which also implements NAT Traversals and already has solutions for this.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Client communication","id":"220","title":"Node-to-Client communication"},"221":{"body":"This section describes the construction of the network topology between nodes participating in the protocol. It will describes the requirements necessary to propagate the most efficiently the Communication Messages to the nodes of the topology.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Peer-to-Peer network","id":"221","title":"Peer-to-Peer network"},"222":{"body":"Communication Messages : the message that are necessary to be sent through the network (node-to-node and node-to-client) as defined above; Topology : defines how the peers are linked to each other; Node or Peer : an instance running the protocol; Link : a connection between 2 peers in the topology;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Definitions","id":"222","title":"Definitions"},"223":{"body":"A node can join the network at any moment; A node can leave the network at any moment; Node will discover new nodes to connect to via gossiping: nodes will exchange information regarding other nodes; Nodes will relay information to their linked nodes (neighbors); A node can challenge another node utilising the VRF in order to authentify the remote node is a specific stake owner/gatherer.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Functionalities","id":"223","title":"Functionalities"},"224":{"body":"RingGossip : NodeProfileDetails * RING_GOSSIP_MAX_SIZE; VicinityGossip : NodeProfileDetails * VICINITY_GOSSIP_MAX_SIZE; CyclonGossip : NodeProfileDetails * CYCLON_GOSSIP_MAX_SIZE; A node profile contains: Node’s id; Node’s IP Address; Node’s topics (set of what the node is known to be interested into); Node’s connected IDs","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Messages","id":"224","title":"Messages"},"225":{"body":"The requirements to join and leave the network at any moment, to discover and change the links and to relay messages are all handled by PolderCast . Implementing PolderCast provides a good support to handle churn, fast relaying and quick stabilisation of the network. The paper proposes 3 modules: Rings, Vicinity and Cyclon . Our addition: The preferred nodes We propose to extend the number of modules with a 4th one. This module is static and entirely defined in the config file. This 4th module will provide the following features: Connect to specific dedicated nodes that we know we can trust (we may use a VRF challenge to validate they are known stakeholder – they participated to numerous block creations); This will add a static, known inter-node communications. Allowing users to build a one to one trusted topology; A direct application for this will be to build an inter-stake-pool communication layer; Static / configured list of trusted parties (automatically whitelisted for quarantine) Metrics measurement related to stability TBD Reports and Quarantine In order to facilitate the handling of unreachable nodes or of misbehaving ones we have a system of reports that handles the state of known peers. Following such reports, at the moment based only on connectivity status, peers may move into quarantine or other less restrictive impairements. In the current system, a peer can be in any of these 4 states: Available: the peer is known to the current node and can be picked up by poldercast layers for gossip and propagation of messages. This is the state in which new peers joining the topology via gossip end up. Trusted: the last handshake between the peer and this node was successfull. For these kind of nodes we are a little more forgiving with reports and failures. Quarantined: the peer has (possibly several) failed handshake attempts. We will not attempt to contact it again for some time even if we receive new gossip. Unknown: the peer is not known to the current node. Actually, due to limitations of the poldercast library, this may mean that there are some traces of the peer in the profiles maintained by the current node but it cannot be picked up by poldercast layers for gossip or propagation. For all purposes but last resort connection attempts (see next paragraph), these two cases are essentially the same. Since a diagram is often easier to understand than a bunch of sentences, these are the transitions between states in the current implementation, with details about avoiding network partition removed (see next paragraph). Quarantine Avoid network partitions An important property of the p2p network is resilience to outages. We must avoid creating partitions in the network as much as possible. For this reason, we send a manual (i.e. not part of poldercast protocol) optimistic gossip message to all nodes that were reported after the report expired. If this message fails to be delivered, no further action will be taken against that peer to avoid cycling it back and forth from quarantine indefinitely. If instead the message is delivered correctly, we successfully prevented a possible partition :). Another measure in place is a sort of a last resort attempt: if the node did not receive any incoming gossip for the last X minutes (tweakable in the config file), we try to contact again any node that is not quarantined and for which we have any trace left in the system (this is where nodes that were artificially forgotten by the system come into play). Part to look into Privacy. Possibly Dandelion tech","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Communications Design","id":"225","title":"Communications Design"},"226":{"body":"","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial models considered","id":"226","title":"Adversarial models considered"},"227":{"body":"We consider an adversary whose goal is to isolate from the network nodes with stake. The impact of such successful attack would prevent block creation. Such adversarial node would propose a block that may look like a fork of the blockchain. Ouroboros Genesis allows fork up to an undetermined number of blocks in the past. The targeted would then have to do a large amount of block synchronisation and validation. If the fork pretend to be in an epoch known to us, we can perform some cryptographic verifications (check the VRF); If the fork pretends to be in an epoch long past, we may perform a small, controlled verification of up to N blocks from the forking point to verify the validity of these blocks; Once the validity verified, we can then verify the locality aliveness of the fork and apply the consensus algorithm to decide if such a fork is worth considering. However, suck attack can be repeated ad nauseam by any adversarial that happened to have been elected once by the protocol to create blocks. Once elected by its stake, the node may turn adversarial, creates as many invalid blocks, and propose them to the attacked node indefinitely. How do we keep track of the rejected blocks ? How do we keep track of the blacklisted stakeholder key or pool that are known to have propose too many invalid block or attempted this attack ? Rejected block have a given block hash that is unlikely to collide with valid blocks, a node can keep a bloomfilter of hashes of known rejected block hash; or of known rejected VRF key; The limitation of maintaining a bloom filter is that we may need to keep an ever growing bloom filter. However, it is reasonable to assume that the consensus protocol will organise itself in a collection of stakepools that have the resources (and the incentive) to keep suck bloom filter.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial forks","id":"227","title":"Adversarial forks"},"228":{"body":"We consider an adversary whose goal is to disrupt or interrupt the p2p message propagation. The event propagation mechanism of the pub/sub part of the p2p network can be leverage to continuously send invalid or non desired transactions to the network. For example, in a blockchain network protocol the transactions are aimed to be sent quickly between nodes of the topology so they may be quickly added to the ledger. While it is true that one can create a random amount of valid transactions, it is also possible perform a certain amount of validation and policies to prevent the transaction message forwarding from flooding the network: The protocol already requires the nodes to validate the signatures and that the inputs are unspent; We can add a policy not to accept transaction that may imply a double spend, i.e. in our pool of pending transaction, we can check that there is no duplicate inputs. The p2p gossiping protocols is an active action where a node decides to contact another node to exchange gossip with. It is not possible to flood the network with the gossiping messages as they do not require instant propagation of the gossips.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Flooding attack","id":"228","title":"Flooding attack"},"229":{"body":"We consider an adversary whose goal is to deanonymize users by linking their transactions to their IP addresses. This model is analysed in Dandelion . PolderCast already allows us to provide some reasonable guarantees against this adversary model. Node do not share their links, they share a limited number of gossips based on what a node believe the recipient node might be interested in; While some links can be guessed (those of the Rings module for example), some are too arbitrary ( Vicinity or Cyclon ) to determined the original sender of a transaction;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Anonymity Against distributed adversaries","id":"229","title":"Anonymity Against distributed adversaries"},"23":{"body":"In order to facilitate the handling of unreachable nodes or of misbehaving ones we have built a node policy tooling. Currently, we collect connectivity statuses for each node. The policy can then be tuned over the collected data to apply some parameters when connecting to a given node, as well as banning nodes from our topology. For each node, the following data is collected: Connection statuses: The failed connection attempts and when it happened; Latency Last message used per topic item (last time a fragment has been received from that node, last time a block has been received from that node…) In the future, we may expand the polocy to include data collected at the blockchain level lile: Faults (e.g. trying to send an invalid block) Contributions in the network Their blockchain status (e.g. tips)","breadcrumbs":"Core Ledger » General Concepts » Network overview » Security and countermeasures","id":"23","title":"Security and countermeasures"},"230":{"body":"We consider an adversary that could intercept the communication between two nodes. Such adversary could: Escalate acquired knowledge to break the node privacy (e.g. user’s public keys); Disrupt the communication between the two nodes; Potentially we might use SSL/TLS with dynamic certificate generation. A node would introduce itself to the network with its certificate. The certificate is then associated to this node and would be propagated via gossiping to the network.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Man in the middle","id":"230","title":"Man in the middle"},"231":{"body":"Each participants in the protocol need: Key Evolving signature (KES) secret key Verifiable Random Function (VRF) secret key Apart from the common block deserialization and hashing verification, each block requires: 2 VRF verification 1 KES verification. Considering the perfect network, it allow to calculate how many sequential hops, a block can hope to reach at a maximum bound. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » In relation to Ouroboros Genesis","id":"231","title":"In relation to Ouroboros Genesis"},"232":{"body":"This section describes tools and libraries used to test catalyst-core components. Jormungandr test libraries includes projects: jormungandr-automation - sets of apis for automating all node calls and node sub-components (REST, GRPC, logging etc.), hersir - api & cli for bootstrapping entire network of nodes with some predefined configuration. Project takes care of proper settings for all nodes as well as block0, thor - testing api & cli for all wallet operations, mjolnir - load tool (api & cli) for all kind of jormungandr transactions, loki - api & cli for sending invalid/adversary load as well as boostraping adversary node.","breadcrumbs":"Core Ledger » testing » testing » testing","id":"232","title":"testing"},"233":{"body":"Incubator of all testing apis for the node and jcli:","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr-automation","id":"233","title":"jormungandr-automation"},"234":{"body":"In order to build jormungandr-automation in main project folder run: cd testing/jormungandr-automation\ncargo build","breadcrumbs":"Core Ledger » testing » jormungandr-automation » build","id":"234","title":"build"},"235":{"body":"Api that can be used to run jcli executable underneath and is capable to assert outcome of command. It can work with already installed jcli (using PATH variable) or custom path. For Example: let jcli: JCli = Default::default(); let private_key = jcli.key().generate(\"ed25519-extended\"); let public_key = jcli.key().convert_to_public_string(&private_key);","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jcli testing api","id":"235","title":"jcli testing api"},"236":{"body":"Collection of automation modules for node interaction and configuration: configuration - allows to configure node & blockchain settings, explorer - explorer configuration/bootstrap & interaction module, grpc - module for grpc internode connection library handling. capable of sending some RPC calls as well as bootstrap receiver instance, legacy - module for loosely typed configuration. This allow to bootstrap older version of node, for example to satisfy need on cross-version testing, rest - module for jormungandr REST api testing, starter - module for bootstrapping node, verifier - node state verifier logger - api for jormungandr log handling/assertion process - api for handling jormungandr process","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr testing api","id":"236","title":"jormungandr testing api"},"237":{"body":"Bunch of loosely coupled utility modules, mostly for additional configuration capabilities or benchmarking: benchmark - measurements framework for various purposes, for example bootstrap time or how many transactions were successfully handled by node, vit - additional helpers for voting capabilities, asserts - asserts extensions, tailored for node needs, block0 - block0 extensions, like easier access to blockchain setting or function to download block0, collector - input collector utils, configuration - test configuration helper (apps paths etc.), keys - create default keys, observer - simple observer framework, panic - panic error reporting in test code, process - process extensions, resource - resources manager, mostly for tls certificates used for testing, storage - node storage generators, time - time utils, mostly for waiting for particular block date, verify - substitute of asserts in case we don’t want to panic eagerly when assertion is failed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-automation » testing","id":"237","title":"testing"},"238":{"body":"Hersir is a cli & api project capable of bootstrapping local jormungandr network which can be exercised by various tools.","breadcrumbs":"Core Ledger » testing » Hersir » Hersir","id":"238","title":"Hersir"},"239":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Hersir » build & install","id":"239","title":"build & install"},"24":{"body":"The p2p policy provides some more fine control on how to handle nodes flagged as not behaving as expected (see the list of data collected). It currently works as a 4 levels: trusted, possible contact, quarantined, forgotten. Each gossip about a new node will create a new entry in the list of possible contact. Then the policy, based on the logged data associated to this node, may decide to put this node in quarantine for a certain amount of time. Trusted nodes are the ones to which we were able to connect successfully. A connectivity report against those nodes will make them transition to the possible contact level, while a successful connection attempt will promote them again to trusted. The changes from one level to another is best effort only. Applying the policy may be costly so the node applies the policy only on the node it is interested about (a gossip update or when reporting an issue against a node). This guarantees that the node does not spend too much time policing its database. And it also makes sure that only the nodes of interest are up to date. However it is possible for the node to choose, at a convenient time, to policy the whole p2p database. This is not enforced by the protocol. Disposition Description available Node is available for the p2p topology for view selection and gossips. quarantined Node is not available for the p2p topology for view selection or gossips. After a certain amount of time, if the node is still being gossiped about, it will be moved to available. forgotten A node forgotten is simply removed from the whole p2p database. However, if the node is still being gossiped about it will be added back as available and the process will start again. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Policy","id":"24","title":"Policy"},"240":{"body":"The simplest configuration is available by using command: hersir --config res\\example.yaml it results in small network with all data dumped to current folder","breadcrumbs":"Core Ledger » testing » Hersir » quick start","id":"240","title":"quick start"},"241":{"body":"Simple example: nodes: - spawn_params: alias: passive leadership_mode: passive persistence_mode: inmemory trusted_peers: - leader - spawn_params: alias: leader leadership_mode: leader persistence_mode: inmemory blockchain: discrimination: test consensus: bft nodes sections defines each network node. We can define alias, that is then used to express relations between the nodes. Also if we keep everything in memory or if node can mint blocks or not. blockchain section defines blockchain parameters, like what is the consensus and if we are using test or production addresses discrimination.","breadcrumbs":"Core Ledger » testing » Hersir » configuration","id":"241","title":"configuration"},"242":{"body":"nodes spawn_params alias: string (mandatory) - reference name of the node. Example: “alias”, bootstrap_from_peers: bool (optional) - should node bootstrap from trusted peers. By default it is auto-evaluated: If node doesn’t have any trusted peers it won’t bootstrap from peers, faketime: custom (optional) - inject fake time settings. For example: faketime: { /// Clock drift (1 = no drift, 2 = double speed) drift: 1, /// Offset from the real clock in seconds offset: 2, } gossip_interval: time (optional) - node gossip interval with the rest of the network. Format: number unit. For example: 10 s, jormungandr: path (optional) - path to jormungandr node executable, leadership_mode: enum (optional) - node leadership mode. Possible values: passive - node won’t be able to produce blocks, leader - node will be able to mint blocks, listen_address: string (optional) - override listen address for node. Example: /ip4/127.0.0.1/tcp/10005, log_level: enum (optional) - log level, Possible values: (info/warn/error/debug/trace) max_bootstrap_attempts: number (optional) - maximum number of bootstrap attempt before abandon, max_connections: number (optional) - max connection node will create with other nodes, max_inbound_connections: number (optional) - max inbound connection that node will accept, mempool: custom (optional) - mempool configuration. Example: mempool: pool_max_entries: 100000 log_max_entries: 100000 network_stuck_check: time (optional) - check interval which node use to verify blockchain advanced. Format: number unit. For example: 10 s, node_key_file: path (optional) - path to node network key, persistence_mode: enum (optional) - set persistence mode. Possible values: inmemory - everything is kept in node memory. If node restarts, all history is gone, persistence - node uses local storage to preserve current state, persistent_fragment_log: path (optional) - persistent fragment log serializes every fragment node receives via REST api, policy: custom (optional) - defines nodes quarantine configuration. Example: policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" preferred_layer: custom (optional) - defines preferences in gossiping. Example: layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 public_address: String (optional)- override public address for node. Example: /ip4/127.0.0.1/tcp/10005, skip_bootstrap: bool (optional) - skips node bootstrap step, topics_of_interest: custom (optional) - topics of interests describe how eager node will fetch blocks or transactions: topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool verbose: bool (optional) - enable verbose mode, which prints additional information, trusted_peers: List (optional) - list of trusted peers. Example: trusted_peers: - leader - leader_1 blockchain block0_date: date (optional) - block0 date, if not provided current date would be taken, block_content_max_size: number (optional) - maximum block content size in bytes, committees: list (optional) - list of wallet aliases which will be committees (capable of tallying the vote), consensus: enum (optional) - blockchain consensus, possible values: Bft,GenesisPraos, consensus_genesis_praos_active_slot_coeff: float (optional) - Determines minimum stake required to try becoming slot leader, must be in range (0,1], discrimination: enum (optional) - type of discrimination of the blockchain: production, if this blockchain is meant for production test, otherwise external_committees: list (optional) - list of committees to be included in block0, external_consensus_leader_ids: list (optional) - list of external leaders id (apart from already defined nodes), external_wallets: list (optional) - list of external wallets. Example: external_wallets: - alias: Alice address: ca1q47vz09320mx2qcs0gspwm47lsm8sh40af305x759vvhm7qyjyluulja80r value: 1000000000 tokens: {} kes_update_speed: number (optional) - the speed to update the KES Key in seconds, linear_fee: custom (optional) - fee calculations settings, slot_duration: number (optional) - The slot duration, in seconds, is the time between the creation of 2 blocks, slots_per_epoch: number (optional) - number of slots in each epoch, tx_max_expiry_epochs: number (optional) - transaction ttl (expressed in number of epochs). session jormungandr: path (optional) - override path to jormungandr. By default it’s taken from PATH variable, root: path (optional) - override path to local storage folder. By default all related data is dumped ino TEMP folder, generate_documentation: bool (optional) - generate documentation files into local storage folder, mode: enum (optional) - set hersir working mode. By default it’s “standard”, which just prints information about correct nodes bootstrap. Possible values: monitor - prints current nodes status as progress bar, standard - just prints information about correct nodes bootstrap, interactive - spawn helper cli, which allows to interact with nodes, log: enum (optional) - log level, Possible values: (info/warn/error/debug/trace), title: string (optional) - give local storage folder name instead of random one.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available parameters","id":"242","title":"full list of available parameters"},"243":{"body":"Full list of commands is available on hersir --help command. hersir 0.1.0 USAGE: hersir [FLAGS] --config FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose OPTIONS: -c, --config Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available commands","id":"243","title":"full list of available commands"},"244":{"body":"Integration test is a container project for all jormungandr & jcli tests. Tests are validating node correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » jormungandr-integration-tests","id":"244","title":"jormungandr-integration-tests"},"245":{"body":"Jormungandr tests architecture relies on test pyramid approach. Most of the effort is put into until and api level and small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Architecture of tests","id":"245","title":"Architecture of tests"},"246":{"body":"","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Quick start","id":"246","title":"Quick start"},"247":{"body":"In order to run test jormungandr & jcli need to be installed or prebuild.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Prerequisites","id":"247","title":"Prerequisites"},"248":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Start tests","id":"248","title":"Start tests"},"249":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Tests categories","id":"249","title":"Tests categories"},"25":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Node organization » Node organization","id":"25","title":"Node organization"},"250":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run all functional tests","id":"250","title":"How to run all functional tests"},"251":{"body":"cd testing/jormungandr-integration-tests\ncargo test jcli","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run jcli only functional tests","id":"251","title":"How to run jcli only functional tests"},"252":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node functional tests","id":"252","title":"How to run single node functional tests"},"253":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node performance tests","id":"253","title":"How to run single node performance tests"},"254":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node endurance tests","id":"254","title":"How to run single node endurance tests"},"255":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::network --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network functional tests","id":"255","title":"How to run network functional tests"},"256":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network performance tests","id":"256","title":"How to run network performance tests"},"257":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network endurance tests","id":"257","title":"How to run network endurance tests"},"258":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Frequency","id":"258","title":"Frequency"},"259":{"body":"Loki is an adversary node implementation and api which operates on jormungandr network.","breadcrumbs":"Core Ledger » testing » Loki » Loki","id":"259","title":"Loki"},"26":{"body":"The secure enclave is the component containing the secret cryptographic material, and offering safe and secret high level interfaces to the rest of the node.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Secure Enclave","id":"26","title":"Secure Enclave"},"260":{"body":"In order to build hersir in main project folder run: cd testing/loki\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Loki » Build & Install","id":"260","title":"Build & Install"},"261":{"body":"Loki can be used bootstrap using cli: loki --genesis-block block0.bin --listen-address 127.0.0.1:8080 -s secret.yaml where: genesis-block - Path to the genesis block (the block0) of the blockchain listen-address - Specifies the address the node will listen secret - Set the secret node config (in YAML format). Example: ---\nbft: signing_key: ed25519_sk1w2tyr7e2w26w5vxv65xf36kpvcsach8rcdmlmrhg3rjzeumjnzyqvdvwfa Then utilizing rest interface of loki node one can send some invalid GRPC messages to rest of the network: curl --location --request POST 'http://127.0.0.1:8080/invalid_fragment' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"address\": \"127.0.0.1:1000\", \"parent\": \"tip\"\n}' where: address - address of “victim” node, parent - Parent block. Possible values: tip - current tip of “victim” node, block0 - block0, {Hash} - arbitrary parent block which hash is provided in request","breadcrumbs":"Core Ledger » testing » Loki » Quick Start","id":"261","title":"Quick Start"},"262":{"body":"/invalid_hash - Sends block with invalid hash, /invalid_signature - Sends block with invalid by wrong leader signature, /nonexistent_leader - Sends block with non-existing leader, /wrong_leader - Sends block with signed with invalid leader,","breadcrumbs":"Core Ledger » testing » Loki » Other possible operations","id":"262","title":"Other possible operations"},"263":{"body":"Loki also provides API for performing adversary operations, like sending invalid fragments: use loki::{AdversaryFragmentSender, AdversaryFragmentSenderSetup}; let mut sender = ... let receiver = .. // node initialization let jormungandr = ... let adversary_sender = AdversaryFragmentSender::new( jormungandr.genesis_block_hash(), jormungandr.fees(), BlockDate::first().next_epoch().into(), AdversaryFragmentSenderSetup::no_verify(), ); adversary_sender .send_faulty_transactions_with_iteration_delay( 10, &mut sender, &receiver, &jormungandr, Duration::from_secs(5), ) .unwrap(); Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Loki » API","id":"263","title":"API"},"264":{"body":"Mjolnir is a load cli & api project which operates on jormungandr node.","breadcrumbs":"Core Ledger » testing » Mjolnir » Mjolnir","id":"264","title":"Mjolnir"},"265":{"body":"In order to build mjolnir in main project folder run: cd testing/mjolnir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Mjolnir » Build & Install","id":"265","title":"Build & Install"},"266":{"body":"","breadcrumbs":"Core Ledger » testing » Mjolnir » Quick Start","id":"266","title":"Quick Start"},"267":{"body":"Mjolnir can be used as a cli. It is capable of putting various load on jormungandr node. It has couple of different load types: explorer - Explorer load fragment - Fragment load passive - Passive Nodes bootstrap rest - Rest load Simplest load configuration is to use rest load with below parameters: Rest load USAGE: mjolnir.exe rest [FLAGS] [OPTIONS] --duration --endpoint FLAGS: -h, --help Prints help information -m, --measure Prints post load measurements -V, --version Prints version information OPTIONS: -c, --count Number of threads [default: 3] --delay Amount of delay [milliseconds] between sync attempts [default: 50] -d, --duration Amount of delay [seconds] between sync attempts -e, --endpoint Address in format: http://127.0.0.1:8002/api/ -b, --progress-bar-mode Show progress bar [default: Monitor]","breadcrumbs":"Core Ledger » testing » Mjolnir » CLI","id":"267","title":"CLI"},"268":{"body":"Mjolnir main purpose is to serve load api: use jortestkit::load::{self, ConfigurationBuilder as LoadConfigurationBuilder, Monitor};\nuse std::time::Duration; //node initialization let mut jormungandr = ... let rest_client = jormungandr.rest(); // create request generator for rest calls let request = mjolnir::generators::RestRequestGen::new(rest_client); // duration based load run (40 seconds) let config = LoadConfigurationBuilder::duration(Duration::from_secs(40)) // with 5 threads .thread_no(5) // with delay between each request 0.01 s .step_delay(Duration::from_millis(10)) // with monitor thread monitor status of load run each 0.1 s .monitor(Monitor::Progress(100)) // with status printer which prints out status of load run each 1 s .status_pace(Duration::from_secs(1_000)) .build(); // initialize load in sync manner // (duration of each request is calculated by time difference between receiving response and sending request ) let stats = load::start_sync(request, config, \"Jormungandr rest load test\"); // finally some way to assert expected correctness, like percentage of successful requests assert!((stats.calculate_passrate() as u32) > 95);","breadcrumbs":"Core Ledger » testing » Mjolnir » API","id":"268","title":"API"},"269":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Mjolnir » full list of available commands","id":"269","title":"full list of available commands"},"27":{"body":"The node’s network is 3 components: Intercommunication API (GRPC) Public client API (REST) Control client API (REST) More detailed information here","breadcrumbs":"Core Ledger » General Concepts » Node organization » Network","id":"27","title":"Network"},"270":{"body":"Thor is a wallet cli & wallet api project which operates on jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Core Ledger » testing » Thor » Thor","id":"270","title":"Thor"},"271":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Thor » Build & Install","id":"271","title":"Build & Install"},"272":{"body":"","breadcrumbs":"Core Ledger » testing » Thor » Quick Start","id":"272","title":"Quick Start"},"273":{"body":"Thor can be used as a wallet cli. It is capable of sending transactions or pull data from node. The simplest usage example is available by using commands: register new wallet based on secret key: thor wallets import --alias darek --password 1234 secret.file connect to node rest API: thor connect https://jormungandr.iohk.io/api use recently created wallet for rest of commands: thor wallets use darek sync with the node regarding wallet data: thor wallets refresh send transaction: thor send tx --ada 5 --address ca1q5srhkdfuxqdm6h57mj45acxcdr57cr5lhddzkrjqyl8mmw62v9qczh78cu -pin 1234","breadcrumbs":"Core Ledger » testing » Thor » CLI","id":"273","title":"CLI"},"274":{"body":"Thor also allows you to use it as Api to perform any wallet operations from the code: use thor::{Wallet, FragmentSender, FragmentSenderSetup, FragmentVerifier}; let receiver = thor::Wallet::default(); let mut sender = thor::Wallet::default(); // node bootstrap let jormungandr = ... let fragment_sender = FragmentSender::from_with_setup( jormungandr.block0_configuration(), FragmentSenderSetup::no_verify(), ); fragment_sender .send_transaction(&mut sender, &receiver, &jormungandr, 1.into()) .unwrap();","breadcrumbs":"Core Ledger » testing » Thor » API","id":"274","title":"API"},"275":{"body":"Thor api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.thor). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Core Ledger » testing » Thor » Configuration","id":"275","title":"Configuration"},"276":{"body":"Full list of commands is available on thor --help command. thor 0.1.0\nCommand line wallet for testing Jormungandr USAGE: thor FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occured confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) refresh Pulls wallet data from the node send Sends fragments to nodes status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Thor » full list of available commands","id":"276","title":"full list of available commands"},"277":{"body":"Glossary: blockchains : the current blockchain and possibly different known forks. clock : general time tracking to know the time in blockchain unit (epoch/slot) tip : the current fork that is considered the correct one, related to consensus algorithm.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Internal Design","id":"277","title":"Internal Design"},"278":{"body":"Each node runs several tasks. Task is a process with a clearly defined interface that abstracts a particular task. General tasks: Network task : handle new connections, and perform lowlevel queries. It does queries parsing and routing them to the other tasks: block, client or transaction tasks. Block task : handles blocks reception from other nodes and the leadership thread. The blocks can be external and internal. External block (…), and internal block (…). When the task receives an external block it validates the block. If validation succeeds then the task appends blocks to the blockchain and checks if the tip needs any changes. When the task receives an internal block it does the same actions except for block validation. And then broadcasts the change of the tip to the network thread. Leadership task : waits for each new slot, evaluates if this node is a slot leader. In case if it is, the task creates a new block (with a set of known transactions) referencing the latest known and agreed block in the blockchain. Then the task sends it to the block thread for processing. Client task : receives block header/body queries. This task is in charge of in accord [!!!] with the blockchains, reply to the client. Transaction task : receives new transactions from the network, validates transaction and handle duplicates. Also the broadcast to other nodes new (valid) transaction received. Internal Architecture","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Tasks","id":"278","title":"Tasks"},"279":{"body":"The blockchain module is responsible to maintaining the blockchain (i.e.) the blocks, the current working branches (we will come back to it in a bit), the different states associated to every blocks, the epoch’s data (the parameters, the stake active distribution and the leadership schedule). It is fairly easy to maintain the blocks of a blockchain. They all have the identifier of the parent block. Storing them is another story though and is not covered here. Blockchain Data structure block0 or blockx.y are blocks of the blockchain. They link to the parent block except for the block0 which may not have parents here (there is a special case where we could set a parent pointing to the block of a previously known state of the blockchain); legder0 or ledgerx.y are states of the blockchain at a given block; epoch x parameters are the blockchain parameters that are valid for all the epoch x; epoch N stake distribution are the stake distribution as extracted from epoch N; epoch x leadership is the leadership schedule for the epoch x. This may seem a bit overwhelming. Let’s follow the flow of block creations and validation on this blockchain:","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Maintaining the blockchain’s state","id":"279","title":"Maintaining the blockchain’s state"},"28":{"body":"This interface is a binary, efficient interface using the protobuf format and GRPC standard. The protobuf files of types and interfaces are available in the source code. The interface is responsible to communicate with other node in the network: block sending and receiving fragments (transaction, certificates) broadcast peer2peer gossip","breadcrumbs":"Core Ledger » General Concepts » Node organization » Intercommunication API (GRPC)","id":"28","title":"Intercommunication API (GRPC)"},"280":{"body":"Let’s start with first initializing the blockchain from the block0. Blockchain Data structure From block0 The first block , the block0, is the block that contains the initial data of the blockchain. From the block0 we can construct the first ledger : the ledger0. From the ledger0 we can extract two objects: epoch 1 parameters which will contains the fee setting to apply during the epoch 1; epoch 0 stake distribution. This is the stake distribution at the end of the epoch 0 (and before the following epoch starts); And now from the epoch 0 stake distribution we can determine the leadership schedules for the epoch 1 and the epoch 2.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » From the block 0","id":"280","title":"From the block 0"},"281":{"body":"The view from the point of view of a block k at an epoch N (block N.k) looks like the following: Blockchain Data structure From blockk It links to the parent block: block N.(k - 1). This is important because it allows us to retrieve the ledger state at the block N.(k - 1). In order to accept the block N.k in the blockchain we need to validate a couple of things: the block N.k is correctly referring to the block N.(k - 1): the block date is increasing; the block number is strictly monotonically increasing; the schedule is correct: the block has been created by the right stake pool at the right time; the block N.k is updating the parent’s ledger state (ledger N.(k - 1)) and is producing a valid new ledger: ledger N.k","breadcrumbs":"Core Ledger » Internal Design » Internal Design » for a block","id":"281","title":"for a block"},"282":{"body":"Epoch transition happen when we switch to an epoch to the following one. Blockchain Data structure Transition","breadcrumbs":"Core Ledger » Internal Design » Internal Design » epoch transition","id":"282","title":"epoch transition"},"283":{"body":"Originally the voting blockchain was designed to be manually started and required a full block 0 and a configuration file to be created and distributed to nodes before it could commence. This made automated deployment difficult and introduces necessary manual steps into the process of running the voting system. To resolve this, the voting system is modified to allow the blockchain and parts of the configuration to be automatically created based solely on the parameters of the next election.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Automatic deployment of the voting blockchain","id":"283","title":"Automatic deployment of the voting blockchain"},"284":{"body":"There are two sources of data required to start the blockchain. Block 0 and the config YAML file. To ease deployment, Block 0 will be created dynamically based on data held in our distributed object storage (which is currently a Postgresql Database.) As are certain parameters currently required for the configuration file. The blockchain would still need to retain the current method for starting, in addition to the new “auto” mode. In essence, automatic configuration entails: Minimizing manual config items to only those that unavoidably need to be defined. Generating configuration for other items where possible from known local state, and only having configuration items for these to override the defaults. Sharing data in a central repository of local configuration items that other nodes would require. Reading other data directly from their source of truth (Such as the schedule of the election, voting power snapshot data and proposals/vote plan information.)","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Overview","id":"284","title":"Overview"},"285":{"body":"The node is configured by a YAML file which contains the following data. In the code, every config parameter should be accompanied by detailed a detailed documentation comment. secret_file: - Optional Path (to what, used for what?) storage: - Optional Path (to what, used for what?) log: - Optional Logger settings. level: - Optional Logger level, can be \"Trace\", \"Debug\", \"Info\". \"Warn\" and \"Error\". Should default to \"Info\" if not set. format: - Format of the logs, can be \"plain\" and \"json\". Should default to \"json\" if not set. output: - Optional destination of the log output. Options need to be fully documented . Should default to stdout if not defined. trace_collector_endpoint: - Optional Options need to be fully documented . Should default to None (ie, no external logging) if not defined. mempool: Optional configuration of the mempool. Should default as specified here. pool_max_entries: - Optional - maximum number of entries in the mempool. Should default to 1,000,000 if not set. log_max_entries: - Optional - maximum number of entries in the fragment logs. Should default to ???? if not set. persistent_log: - Optional - path to the persistent log of all incoming fragments. A decision needs to be made if persistent logging is normally desired. If it is, it should default to a location in /var. If not, it should default to None and be disabled. leadership: - Optional - the number of entries allowed in the leadership logs. logs_capacity: - Optional - Should default to ???? if not set. rest: - Optional - Enables REST API. listen: - Optional - Address to listen to rest api requests on. Should default to “0.0.0.0:12080”. This default is open to suggestions tls: - Optional - Define inbuilt tls support for the listening socket. If not specified, TLS is disabled. The default is TLS Disabled. cert_file: - Path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: - Path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: - Optional - Defines CORS settings. Default should be as shown in the individual entries. allowed_origins - Origin domains we accept connections from. Defaults to “*”. max_ages_secs - How long in seconds to cache CORS responses. Defaults to 60. allowed_headers - A list of allowed headers in the preflight check. If the provided list is empty, all preflight requests with a request header will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. allowed_methods - A list of allowed methods in the preflight check. If the provided list is empty, all preflight requests will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. STILL TODO * `jrpc` - Optional. No idea what this does yet??? TODO: Document it and defaults. * `p2p` - Peer to Peer config. #[serde(default)] pub p2p: P2pConfig, #[serde(default)] pub http_fetch_block0_service: Vec, #[cfg(feature = \"prometheus-metrics\")] pub prometheus: Option, /// the time interval with no blockchain updates after which alerts are thrown #[serde(default)] pub no_blockchain_updates_warning_interval: Option, #[serde(default)] pub bootstrap_from_trusted_peers: bool, #[serde(default)] pub skip_bootstrap: bool, pub block_hard_deadline: Option, Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Configuration","id":"285","title":"Configuration"},"286":{"body":"sequenceDiagram actor U as User participant B as Cardano Block Chain participant Br as Cardano-Catalyst Bridge participant C as Catalyst Backend U->>B: Registeration Txn Note right of U: Type/Public Key/Reward Address Note over B: Block Minted B->>Br: Reads Chain Tip, detects Registration Br->>C: Records Latest Registration U->>C: Requests Priviliged Operation Note over C: Generates Random Challenge C->>U: Challenge Sent Note over U: Signs Challenge with Public Key U->>C: Challenge Response Note right of U: Public Key/Challenge Signature Note over C: Validates Response alt Public Key Registered & Signature Valid C->>U: Authorized Note left of C: Authorized
Session Established loop Authorized U->>C: Privileged Operation C->>U: Priviliged Response end else Unauthorized C->>U: Unauthorized end Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Permissionless Auth » Permissionless Auth","id":"286","title":"Permissionless Auth"},"287":{"body":"Welcome to the Catalyst testing User Guide. Vit testing is a family of projects, with the aim to support all quality assurance activities in Catalyst. One can find here: catalyst backend deployment tool, catalyst backend mock, integration tests, registration service and registration verify service, snapshot service, snapshot wormhole, custom proxy for catalyst backend, cli voting app implementation, load driver imitating voting app users.","breadcrumbs":"Catalyst testing User Guide » Catalyst testing User Guide » Catalyst testing User Guide","id":"287","title":"Catalyst testing User Guide"},"288":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"288","title":"Iapyx"},"289":{"body":"Iapyx is a wallet cli & wallet api project which operates on catalyst-jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"289","title":"Iapyx"},"29":{"body":"This interface is for simple queries for clients like: Wallet Client & Middleware Analytics & Debugging tools Explorer it’s recommended for this interface to not be opened to the public. TODO: Add a high level overview of what it does","breadcrumbs":"Core Ledger » General Concepts » Node organization » Public API REST","id":"29","title":"Public API REST"},"290":{"body":"In order to build iapyx in main project folder run: cd iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Build & Install","id":"290","title":"Build & Install"},"291":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Quick Start","id":"291","title":"Quick Start"},"292":{"body":"Iapyx can be used as a wallet cli. It is capable of sending votes or pull data from node. The simplest usage example is available by using commands: register new wallet based on qr code: iapyx wallets import qr qr_file.png --pin 1234 connect to node rest API: iapyx connect https://catalyst-backend.io/api use recently created wallet for rest of commands: iapyx wallets use darek sync with the node and get wallet data: iapyx wallets refresh send vote: iapyx vote single --choice yes --pin --id {proposal_id}","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » CLI","id":"292","title":"CLI"},"293":{"body":"Iapyx can be used as api in order to perform voting operations from the code: let wallet_proxy = spawn_network(...); let secret_file_path = Path::new(\"wallet_alice\"); let mut alice = iapyx::ControllerBuilder::default() .with_backend_from_client(wallet_proxy.client())? .with_wallet_from_secret_file(secret_file_path.as_ref())? .build() let proposals = alice.proposals().unwrap(); let votes_data = proposals .iter() .take(batch_size) .map(|proposal| (proposal, Choice::new(0))) .collect(); let fragment_ids = alice .votes_batch(votes_data) .unwrap() .iter() .map(|item| item.to_string()) .collect();","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » API","id":"293","title":"API"},"294":{"body":"Iapyx api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.iapyx). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Configuration","id":"294","title":"Configuration"},"295":{"body":"Full list of commands is available on iapyx --help command. iapyx 0.0.1\nCommand line wallet for testing Catalyst USAGE: iapyx.exe FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occurred confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set funds Prints information about voting funds help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) proposals Prints proposals available to vote on refresh Pulls wallet data from the catalyst backend status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses vote Sends votes to backend votes Prints history of votes wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » full list of available commands","id":"295","title":"full list of available commands"},"296":{"body":"Iapyx-load is a load cli & api project which operates on catalyst backend.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Iapyx Load","id":"296","title":"Iapyx Load"},"297":{"body":"In order to build iapyx-load in main project folder run: cd testing/iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Build & Install","id":"297","title":"Build & Install"},"298":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Quick Start","id":"298","title":"Quick Start"},"299":{"body":"Iapyx-load can be used as a cli. It is capable of putting various load on catalyst backend. Available load types: node-only - Load which targets blockchain calls only static-only - Load which targets static data only simulation - Load with simulate real user case (both blockchain and static data in some relation) Also node-only load provides two load characteristic: bursts - Bursts mode. Sends votes in batches and then wait x seconds const - Constant load. Sends votes with x votes per second speed And two scenario types: duration - Duration based load. Defines how much time load should run count - Requests count based load. Defines how many requests load should sent in total Simplest load configuration is to use node-only load with below parameters: iapyx-load node-only const count --help USAGE: iapyx-load.exe node-only const count [FLAGS] [OPTIONS] --requests-per-thread FLAGS: --debug Print additional information --help Prints help information --read-from-filename Read pin from filename of each qr code --reuse-accounts-early Update all accounts state before sending any vote --reuse-accounts-lazy Update account state just before sending vote -h, --https Use https for sending fragments -V, --version Prints version information OPTIONS: -a, --address
Address in format: 127.0.0.1:8000 [default: 127.0.0.1:8000] -n, --requests-per-thread How many requests per thread should be sent -c, --criterion Pass criteria -d, --delay Amount of delay [miliseconds] between requests [default: 10000] --global-pin Global pin for all qr codes [default: 1234] -b, --progress-bar-mode Show progress. Available are (Monitor,Standard,None) [default: Monitor] -q, --qr-codes-folder Qr codes source folder -s, --secrets-folder Secrets source folder --status-pace How frequent (in seconds) to print status [default: 1] -t, --threads Prints nodes related data, like stats,fragments etc [default: 3]","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » CLI","id":"299","title":"CLI"},"3":{"body":"Welcome to the Jörmungandr User Guide. Jörmungandr is a node implementation, written in rust, with the initial aim to support the Ouroboros type of consensus protocol. A node is a participant of a blockchain network, continuously making, sending, receiving, and validating blocks. Each node is responsible to make sure that all the rules of the protocol are followed.","breadcrumbs":"Core Ledger » Core Ledger » Core Ledger","id":"3","title":"Core Ledger"},"30":{"body":"This interface is not finished, but is a restricted interface with ACL, to be able to do maintenance tasks on the process: Shutdown Load/Retire cryptographic material TODO: Detail the ACL/Security measure Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Control API REST","id":"30","title":"Control API REST"},"300":{"body":"Iapyx load main purpose is to serve as load api: use iapyx::{NodeLoad, NodeLoadConfig};\nuse jortestkit::{ load::{ConfigurationBuilder, Monitor}, measurement::Status,\n}; ... let no_of_threads = 10; let no_of_wallets = 40_000; let mut qr_codes_folder = Path::new(\"qr-codes\"); let config = ConfigurationBuilder::duration(parameters.calculate_vote_duration()) .thread_no(threads_no) .step_delay(Duration::from_millis(delay)) .fetch_limit(250) .monitor(Monitor::Progress(100)) .shutdown_grace_period(Duration::from_secs(60)) .build(); let load_config = NodeLoadConfig { batch_size, use_v1: false, config, criterion: Some(100), address: \"127.0.0.1:8080\".to_string(), qr_codes_folder: Some(qr_codes_folder), secrets_folder: None, global_pin: \"\".to_string(), reuse_accounts_lazy: false, reuse_accounts_early: false, read_pin_from_filename: true, use_https: false, debug: false, }; let iapyx_load = NodeLoad::new(load_config); if let Some(benchmark) = iapyx_load.start().unwrap() { assert!(benchmark.status() == Status::Green, \"too low efficiency\"); }","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » API","id":"300","title":"API"},"301":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » full list of available commands","id":"301","title":"full list of available commands"},"302":{"body":"Integration test is a container project for all catalyst e2e and integration tests. Tests are validating network correctness, stability. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » integration-tests","id":"302","title":"integration-tests"},"303":{"body":"Integration tests architecture relies on test pyramid approach. Where most of the effort is put into component and integration level and finally small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Architecture of tests","id":"303","title":"Architecture of tests"},"304":{"body":"","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Quick start","id":"304","title":"Quick start"},"305":{"body":"In order to run test integration tests below components need to be installed or prebuild: [vit-servicing-station-server|https://github.com/input-output-hk/vit-servicing-station/tree/master/vit-servicing-station-server] [jormungandr|https://github.com/input-output-hk/jormungandr/tree/master/jormungandr] [valgrind|https://github.com/input-output-hk/vit-testing/tree/master/valgrdin]","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Prerequisites","id":"305","title":"Prerequisites"},"306":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Start tests","id":"306","title":"Start tests"},"307":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Tests categories","id":"307","title":"Tests categories"},"308":{"body":"cd integration-tests\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run all functional tests","id":"308","title":"How to run all functional tests"},"309":{"body":"cd integration-tests\ncargo test --features testnet-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run testnet functional tests","id":"309","title":"How to run testnet functional tests"},"31":{"body":"In a proof of stake, participants are issued a stake equivalent to the amount of coins they own. The stake is then used to allow participation in the protocol, simply explained as: The more stake one has, the more likely one will participate in the good health of the network. When using the BFT consensus, the stake doesn’t influence how the system runs, but stake can still be manipulated for a later transition of the chain to another consensus mode.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake","id":"31","title":"Stake"},"310":{"body":"cd integration-tests\ncargo test non_functional::load --features load-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run load tests","id":"310","title":"How to run load tests"},"311":{"body":"cd testing/jormungandr-integration-tests\ncargo test non_functional::soak --features soak-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run network endurance tests","id":"311","title":"How to run network endurance tests"},"312":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Frequency","id":"312","title":"Frequency"},"313":{"body":"Registration service is REST service purely for test purposes which is capable to interact with: voter registration cli cardano cli vit-kedqr","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"313","title":"Registration service"},"314":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"314","title":"build"},"315":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"315","title":"quick start"},"316":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"316","title":"clients"},"317":{"body":"Registration CLI is cli utility tool which help to interact with registration service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"317","title":"cli"},"318":{"body":"Example: use registration_service::{ client::rest::RegistrationRestClient, context::State, request::Request, }; ... let payment_skey = Path::new(\"payment.skey\"); let payment_skey = Path::new(\"payment.vkey\"); let payment_skey = Path::new(\"stake.skey\"); let payment_skey = Path::new(\"stake.vkey\"); let payment_skey = Path::new(\"vote.skey\"); let registration_client = RegistrationRestClient::new_with_token(registration_token, registration_address); let registration_request = Request { payment_skey, payment_vkey, stake_skey, stake_vkey, vote_skey, }; let registration_job_id = registration_client.job_new(registration_request).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status); let qr_code_path = temp_dir.child(\"qr_code\"); std::fs::create_dir_all(qr_code_path.path()).unwrap(); let qr_code = registration_client .download_qr(registration_job_id.clone(), qr_code_path.path()) .unwrap(); let voting_key_sk = registration_client .get_catalyst_sk(registration_job_id) .unwrap(); NOTE: see cardano cli guide . This details information how to create payment and stake files.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"318","title":"api"},"319":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Registration CLI","id":"319","title":"Registration CLI"},"32":{"body":"Account are represented by 1 type of address and are just composed of a public key. The account accumulate moneys and its stake power is directly represented by the amount it contains For example: A - Account with 30$ => Account A has stake of 30 B - Account with 0$ => Account B has no stake The account might have a bigger stake than what it actually contains, since it could also have associated UTXOs, and this case is covered in the next section.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the Account Model","id":"32","title":"Stake in the Account Model"},"320":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Build & Install","id":"320","title":"Build & Install"},"321":{"body":"The simplest usage example is available by using commands: register new job: registration-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\\n--stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS} NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This detail information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Quick Start","id":"321","title":"Quick Start"},"322":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » full list of available commands","id":"322","title":"full list of available commands"},"323":{"body":"This section describe configuration file which can be passed as argument for registration service: port: port on which registration-service will be exposed, jcli: path to jcli executable, result-dir: path to folder which artifacts will be dumped (qr-code etc.), cardano-cli: path to jcli executable, voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"jcli\": \"jcli\", \"result-dir\": \"/persist\", \"cardano-cli\": \"./cardano-cli\", \"voter-registration\": \"./voter-registration\", \"vit-kedqr\": \"./vit-kedqr\", \"network\": \"mainnet\", \"token\": \"...\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"323","title":"Configuration"},"324":{"body":"Registration service is REST service purely for test purposes. It is capable to interact with voter registration cli , cardano cli and vit-kedqr .","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"324","title":"Registration service"},"325":{"body":"In order to build registration-verify-service in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"325","title":"build"},"326":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"326","title":"quick start"},"327":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"327","title":"clients"},"328":{"body":"Registration CLI is cli utility tool which help to interact with registration verify service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"328","title":"cli"},"329":{"body":"Example: use registration_verify_service::client::rest::RegistrationVerifyRestClient; ... let registration_verify_client = RegistrationVerifyRestClient::new_with_token(registration_token, registration_address); let mut form = Form::new() .text(\"pin\", \"1234\") .text(\"funds\",\"500\") .text(\"threshold\", \"500\") .file(\"qr\", PathBuf::new(\"my_q.png\")?; let registration_job_id = registration_verify_client.job_new(form).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status);","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"329","title":"api"},"33":{"body":"UTXO are represented by two kind of addresses: single address: those type of address have no stake associated group address: those types of address have an account associated which receive the stake power of the UTXOs value For example with the following utxos: UTXO1 60$ (single address) => has stake of 0 UTXO2 50$ (group address A) \\ ->- A - Account with 10$ => Account A has stake of 100 UTXO3 40$ (group address A) / UTXO4 20$ (group address B) -->- B - Account with 5$ => Account B has stake of 25","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the UTXO Model","id":"33","title":"Stake in the UTXO Model"},"330":{"body":"Registration Verify CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Registration Verify CLI","id":"330","title":"Registration Verify CLI"},"331":{"body":"In order to build registration verify project in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Build & Install","id":"331","title":"Build & Install"},"332":{"body":"The simplest usage example is available by using commands: register new job: registration-verify-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\ --stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS}` NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This details information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Quick Start","id":"332","title":"Quick Start"},"333":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » full list of available commands","id":"333","title":"full list of available commands"},"334":{"body":"This section describe configuration file which can be passed as argument for registration verify service: port: port on which registration-verify-service will be exposed, jcli: path to jcli executable, snapshot-token: token required by snapshot-service , snapshot-address: address of snapshot-service , client-token: access token for client endpoints (verifying voting power etc.), admin-token: access token for admin endpoints (updating snapshot etc.),, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, initial-snapshot-job-id: initial job id from snapshot service that will be used when starting service Example: \"port\": 8080, \"jcli\": \"jcli\", \"snapshot-token\": \"3568b599a65557b2a2e\", \"snapshot-address\": \"https://snapshot.address:8080\", \"client-token\": \"5e19639accf2d76bae\", \"admin-token\": \"605a7c515ec781fd39\", \"network\": \"mainnet\", \"initial-snapshot-job-id\": \"3b49a0ae-5536-454b-8f47-780d9e7da6a0\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"334","title":"Configuration"},"335":{"body":"Service which operates on top of voting tools . It is a interface improvement which expose voting tools as a REST service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Snapshot trigger service","id":"335","title":"Snapshot trigger service"},"336":{"body":"In order to build snapshot-trigger-service in main project folder run: cd snapshot-trigger-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » build","id":"336","title":"build"},"337":{"body":"The simplest configuration is available by using command: snapshot-trigger-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » quick start","id":"337","title":"quick start"},"338":{"body":"In order to start new job one need to send POST request like below: curl --location --request POST 'https://snapshot.io/api/job/new' \\\n--header 'API-Token: ...' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"threshold\": 2000000, // IN Lovelace \"slot-no\": 31842935\n}' Response will contains job status: b0b7b774-7263-4dce-a97d-c167169c8f27 Then query for job status: curl --location --request GET 'https://snapshot.io/api/job/status/b0b7b774-7263-4dce-a97d-c167169c8f27' \\\n--header 'API-Token: ...' and finally fetch snapshot: curl --location --request GET 'https://snapshot.io/api/job/files/get/b0b7b774-7263-4dce-a97d-c167169c8f27/snapshot.json' \\\n--header 'API-Token: ...' which has form: { \"initial\": [ { \"fund\": [ { \"address\": \"ca1q5yr504t56ruuwrp5zxpu469t9slk0uhkefc7admk7wqrs24q6nxwyhwjcf\", \"value\": 14463 }, { \"address\": \"ca1q5ynl2yqez8lmuaf3snvgcw885c9hxxq6uexeevd4al8pct7vx69sljvzxe\", \"value\": 9991 },\n....","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Usage","id":"338","title":"Usage"},"339":{"body":"","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » clients","id":"339","title":"clients"},"34":{"body":"Stake pool are the trusted block creators in the genesis-praos system. A pool is declared on the network explicitly by its owners and contains, metadata and cryptographic material. Stake pool has no stake power on their own, but participants in the network delegate their stake to a pool for running the operation.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake pool","id":"34","title":"Stake pool"},"340":{"body":"Snapshot CLI is cli utility tool which help to interact with snapshot trigger service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » cli","id":"340","title":"cli"},"341":{"body":"Example: use snapshot_trigger_service::{ client::rest::SnapshotRestClient, config::JobParameters, State, }; let job_param = JobParameters { slot_no: Some(1234567), tag: Some(\"fund1\".to_string()), }; let snapshot_token= \"...\"; let snapshot_address = \"...\"; let snapshot_client = SnapshotRestClient::new_with_token(snapshot_token.into(), snapshot_address.into()); let snapshot_job_id = snapshot_client.job_new(job_params).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); let snapshot_jobs_status = snapshot_client.wait_for_job_finish(snapshot_job_id.clone(), wait)?; let snapshot = snapshot_client.get_snapshot(snapshot_job_id)?;","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » api","id":"341","title":"api"},"342":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Registration CLI","id":"342","title":"Registration CLI"},"343":{"body":"In order to build registration-service in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Build & Install","id":"343","title":"Build & Install"},"344":{"body":"The simplest usage example is available by using commands: register new job: snapshot-cli --endpoint https://snapshot.io job new --tag daily NOTE: response of the above call should return job-id which should be used in next call like below: b0b7b774-7263-4dce-a97d-c167169c8f27 check job id: snapshot-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Quick Start","id":"344","title":"Quick Start"},"345":{"body":"Full list of commands is available on snapshot-cli --help command. snapshot-trigger-service 0.1.0 USAGE: snapshot-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint snapshot endpoint [env: SNAPSHOT_ENDPOINT=] -t, --token access token, which is necessary to perform client operations [env: SNAPSHOT_TOKEN=] SUBCOMMANDS: files retrieve files from snapshot (snapshot outcome etc.) health check if snapshot service is up help Prints this message or the help of the given subcommand(s) job job related commands Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » full list of available commands","id":"345","title":"full list of available commands"},"346":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, result-dir: path to folder which artifacts will be dumped (qr-code etc.), voting-tools: voting tools internal parameters section, bin: “voting-tools”, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, db: dbsync name, db-user: dbsync user, db-host: dbsync host, scale: voting power multiplier. If 1 then Lovelace is used voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"result-dir\": \"/persist/snapshot\", \"voting-tools\": { \"bin\": \"voting-tools\", \"network\": \"mainnet\", \"db\": \"dbsync\", \"db-user\": \"dbsync-admin\", \"db-host\": \"/alloc\", \"scale\": 1000000 }, \"token\": \"3568b599a65557b2a2e\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Configuration » Configuration","id":"346","title":"Configuration"},"347":{"body":"Snapshot wormhole is a specialized Rest client API project. It has a builtin scheduler for transfering snapshot result file from snapshot-trigger-service to vit-servicing-station service.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » snapshot wormhole","id":"347","title":"snapshot wormhole"},"348":{"body":"In main project folder run: cd vit-testing/snapshot-wormhole\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » build","id":"348","title":"build"},"349":{"body":"","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run","id":"349","title":"run"},"35":{"body":"Stake can and need to be delegated to stake pool in the system. They can change over time with a publication of a new delegation certificate. Delegation certificate are a simple declaration statement in the form of: Account 'A' delegate to Stake Pool 'Z' Effectively it assigns the stake in the account and its associated UTXO stake to the pool it delegates to until another delegation certificate is made. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake Delegation","id":"35","title":"Stake Delegation"},"350":{"body":"The simplest run configuration is available by using command: snapshot-wormhole --config snapshot-wormhole.config one-shot which will perform a single job of snapshot-trigger-service -> vit-servicing-station See config for configuration file details.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » quick start","id":"350","title":"quick start"},"351":{"body":"Two modes are available: one-shot - ends program after single job is done, schedule - run job continuously based on cron string. one-shot This mode can be helpful for debugging or testing purposes to verify if our configuration is correct and services are available. schedule Start scheduler based on input cron string. We are using custom cron string which allows to program scheduler based on seconds. The scheduling format is as follows: | sec | min | hour | day of month | month | day of week | year |\n| * | * | * | * | * | * | * | For example, to schedule each run per 15 minutes starting from now: snapshot-wormhole --config wormhole-config.json schedule --cron \"* 4/60 * * * *\" --eagerly full list of available commands Full list of commands is available on snapshot-wormhole --help command","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run modes","id":"351","title":"run modes"},"352":{"body":"This section describe configuration file which can be passed as argument when starting snapshot-wormhole:","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » Configuration","id":"352","title":"Configuration"},"353":{"body":"This section describe snapshot trigger service connection: address: snapshot trigger REST api address, token: optional access token,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » snapshot service","id":"353","title":"snapshot service"},"354":{"body":"This section describe servicing station service connection: address: servicing station service REST api address,,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » servicing station service","id":"354","title":"servicing station service"},"355":{"body":"This section defines snapshot import parameters when applying snapshot to vit servicing station min_stake_threshold: minimum stake needed to participate in voting. Expressed in ada, voting_power_cap: maximum voting power before capping in order to satisfy fairness in voting. Expressed as a fraction number, direct_voters_group: group name for direct voters (determines part of REST path when accessing particular group with GET request), representatives_group: group name for representatives (determines part of REST path when accessing particular group with GET request) Example: { \"snapshot_service\": { \"address\": \"http://127.0.0.1:9090\", \"token\": \"RBj0weJerr87A\" }, \"servicing_station\": { \"address\": \"http://127.0.0.1:8080\" }, \"parameters\": { \"min_stake_threshold\": 500, \"voting_power_cap\": { \"Rational\": [\"Plus\",[1,2]] }, \"direct_voters_group\": \"direct\", \"representatives_group\": \"rep\" }\n}\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » parameters","id":"355","title":"parameters"},"356":{"body":"Valgrind is a Rest API project which is simplified proxy solution for catalyst backend.","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » valgrind","id":"356","title":"valgrind"},"357":{"body":"In main project folder run: cd valgrind\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » build","id":"357","title":"build"},"358":{"body":"The simplest configuration is available by using command: valgrind --block0_path block0.bin By default valgrind will be exposed at 127.0.0.1:8000","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » quick start","id":"358","title":"quick start"},"359":{"body":"Valgrind project provides also API for interacting with proxy server. Usage example: use valgrind::client::{ValgrindClient,ValgrindSettings}; let settings = RestSettings { enable_debug: false, use_https: false, certificate: None, cors: None, } let address = \"0.0.0.0:8080\".to_string(); let client = ValgrindClient::new(address, settings) let fragment_logs = client.fragment_logs()?;","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » client","id":"359","title":"client"},"36":{"body":"The rust node comes with tools and help in order to quickly start a node and connect to the blockchain. It is compatible with most platforms and it is pre-packaged for some of them. Here we will see how to install jormungandr and its helper jcli and how to connect quickly to a given blockchain. There are three posible ways you can start jormungandr.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Quickstart","id":"36","title":"Quickstart"},"360":{"body":"This section describe configuration file which can be passed as argument when starting valgrind: address: address on which valgrind will be exposed. By default: 127.0.0.1:8000, vit-address: vit servicing station address. By default: 127.0.0.1:3030, node-address: node address. By default: 127.0.0.1:8080, block0-path: path to block0 executable, cert: path to certificate (for enabling https). Optional, key: path certificate key (for enabling https). Optional, Example: \"address\": \"127.0.0.1:8000\", \"vit-address\": \"127.0.0.1:3030\", \"node-address\": \"127.0.0.1:8080\", \"block0-path\": \"./block0.bin\", \"cert\": \"certificate.cert\", \"key\": \"certificate.key\",\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » valgrind » Configuration » Configuration","id":"360","title":"Configuration"},"361":{"body":"Vitup is a cli project which is capable to bootstrap catalyst backend which can be exercised by various tools. Initial purpose is to provide simple localhost backend for catalyst voting app.","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » vitup","id":"361","title":"vitup"},"362":{"body":"before building vitup all dependencies need to be installed. valgrind jormungandr vit-servicing-station then in order to build vitup in main project folder run: cargo build and install: cargo install --path vitup","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » build","id":"362","title":"build"},"363":{"body":"The simplest configuration is available by using command: vitup start quick default endpoint will be exposed at 0.0.0.0:80 all data dumped to .\\catalyst","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » quick start","id":"363","title":"quick start"},"364":{"body":"Configuration file example is available under src/vit-testing/vitup/example/mock/config.yaml This section describe configuration file which can be passed as argument for vitup start mock command: pub struct Configuration { pub ideascale: bool, pub protocol: valgrind::Protocol,","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » Configuration","id":"364","title":"Configuration"},"365":{"body":"pub local: bool, } port: port on which registration-service will be exposed, token: token limiting access to environment. Must be provided in header API-Token for each request working-dir: path to folder which artifacts will be dumped (qr-code etc.), protocol: optional parameter if service shoudl be exposed through https. Then two sub-parameters need to be defined key_path and cert_path like in an example below: \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" } NOTE: certificates in resources folder are self-signed Example: { \"port\": 8080, \"working-dir\": \"./mock\", \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » [serde(default)]","id":"365","title":"[serde(default)]"},"366":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation » Data Generation","id":"366","title":"Data Generation"},"367":{"body":"This section describe configuration file. It is passed as argument when starting vitup. It can also, in some cases, send to already running environments in order to restart them with new settings.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"367","title":"Configuration"},"368":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Initials","id":"368","title":"Initials"},"369":{"body":"Allows to provide initial voters and representatives which whose will be available in initial snapshot. see snapshot data creation guide for more details","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"369","title":"snapshot"},"37":{"body":"As described here . The passive Node is the most common type of Node on the network. It can be used to download the blocks and broadcast transactions to peers. However, it doesn’t have cryptographic materials or any mean to create blocks. This type of nodes are mostly used for wallets, explorers or relays.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a passive node in an existing network","id":"37","title":"As a passive node in an existing network"},"370":{"body":"Allows to provide initial addresses/voters which addresses would be put in block0. Supported syntax: above threshold Amount of wallets which receive more than value defined in static_data.voting_power parameter Example: { \"above_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses below threshold Amount of wallets which receive less than value defined in static_data.voting_power parameter Example: { \"below_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses around level Amount of wallets which have funds around defined level Example: { \"count\":30, \"level\":1000, \"pin\":\"1234\"\n} zero funds Amount of wallets which won’t have any funds in block0 Example: { \"zero_funds\":30, \"pin\":\"1234\"\n} named wallet Wallet with custom pin and arbitrary funds amount, Example: { \"name\":\"darek\", \"funds\":8000, \"pin\":\"1111\" }, external wallet Wallet with address and pin. For users who already generated address outside vitup. Example: { \"address\":\"ca1qknqa67aflzndy0rvkmxhd3gvccme5637qch53kfh0slzkfgv5nwyq4hxu4\", \"funds\":8000 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » block0","id":"370","title":"block0"},"371":{"body":"Allows to provide initial addresses/voters which addresses would be put in initial snapshot. Supported syntax: random Some number of random wallets which receive specified amount of voting power Example: { \"count\": 2, \"level\": 5000 }, external A single entry with specified voting key and voting power Example: { \"key\":\"3877098d14e80c62c071a1d82e3df0eb9a6cd339a5f66e9ec338274fdcd9d0f4\", \"funds\":300 } named A single entry with specified alias from block0 and optional voting power. If voting power is not defined it would be taken from block0 section. If vitup cannot find alias it will produce an error Example: { \"name\": \"darek\", \"funds\": 100 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"371","title":"snapshot"},"372":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote plan","id":"372","title":"vote plan"},"373":{"body":"Below parameters describe how long vote would be active, for how long users can vote and when tally period would begin. In cardano time is divided into epochs which consists of slots. There are 2 parameters that defines how long epoch should last, slot_duration and slots_per_epoch with equation: epoch_duration = slot_duration * slots_per_epoch. For example, for given: slot_duration = 2\nslots_per_epoch = 10 then epoch will lasts 20 seconds. vote_start, vote_tally, tally_end - describe 2 vote phases: from vote_start to vote_tally : casting vote period, where we gather votes. from vote_tally to tally_end: tallying vote period, where we gather voting results. Sll above parameters are expressed in epochs. Be aware that slot_duration and slots_per_epoch have influence on time voting phase would start. For example: start vote in 5 minutes, allow users to case vote for 20 minutes give 1 hour for tally operation our setup would be like below: \"vote_start\":1,\n\"vote_tally\":4,\n\"tally_end\":20,\n\"slots_per_epoch\":60, See jormungandr docs for more information. NOTE: slot_duration is defined in blockchain section of configuration file private If true, then voting is private otherwise public. This parameters basically controls if votes choices are encrypted or not. representatives_vote_plan TBD, currently not used","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote time","id":"373","title":"vote time"},"374":{"body":"\"vote_plan\": { \"vote_time\": { \"vote_start\": 13, \"tally_start\": 98, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true, \"representatives_vote_plan\": false }, }, blockchain Set of parameters which controls blockchain related configuration. See jormungandr docs for more information. slot_duration Describes how frequent block are produces by network. Slot duration is expressed in seconds. Cannot be longer that 128. block_content_max_size Describes how big a single block can be. Larger blocks can hold more transactions which results in faster transactions processing. However it put more requirements on space and network throughput. block0_time Optional parameter which defines start time of block0. It is useful when one want to defined voting phases that ends and starts precisely in required time. Otherwise block0_time is equal to current time when running vitup tx_max_expiry_epochs Optional parameter which defines what is the maximum duration (expressed in epochs) of transaction timeout. Usually it is equal to 1. consensus_leader_ids Allows to override randomly generated consensus leaders ids. Useful when we have our own pre-generated leaders keys for nodes. linear_fees Transactions fees which defined cost of transaction or vote. constant - constant fee added to each transaction coefficient - coefficient of each transaction output certificate - cost of sending certificate. constant + transaction.output * coefficient + certificate Example: \"linear_fees\": { \"constant\": 1, \"coefficient\": 1, \"certificate\": 2 }, Above configuration will result in: For transaction with 1 input and 1 output 1 + 1 * 1 + 0 = 2 For vote 1 + 0 * 1 + 2 = 3 committees Committee is a wallet that is capable of tallying voting results. This setting allows to use predefined committee rather than generate random by vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » example","id":"374","title":"example"},"375":{"body":"Section describes static data used for voting. Mostly defines parameters for servicing station","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » data","id":"375","title":"data"},"376":{"body":"Current fund related settings: options Defines options available for voters. Should be expressed as coma-separated values. For example: options: \"yes,no\" proposals Number of proposals available for voting challenges Number of challenges available for voting. Challenge is a container for proposals for the same domain reviews Number of reviews for proposals voting_power Threshold for voting participation, expressed in ADA fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime. This data will be shown to users after current voting will ends.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » current fund","id":"376","title":"current fund"},"377":{"body":"Limited subset of settings comparing to current_fund section for next funds fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » next funds","id":"377","title":"next funds"},"378":{"body":"Service related settings NOTE: this section is ignored when only generating data using vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » service","id":"378","title":"service"},"379":{"body":"Control version of backend. Manipulating this parameter we can tell voting app to force user to self-update application.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » version","id":"379","title":"version"},"38":{"body":"The network could be running either bft or genesis consensus. In the former case the node must have the private key of a registered as a slot leader. For the latter the private keys of a registered stake pool are needed. More information here","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a node generating blocks in an existing network","id":"38","title":"As a node generating blocks in an existing network"},"380":{"body":"Controls protocol over which vitup is available for client","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » https","id":"380","title":"https"},"381":{"body":"{ \"initials\":{ \"snapshot\":{ \"tag\":\"daily\", \"content\":[ { \"count\":2, \"level\":1234 }, { \"name\":\"alice\" }, { \"name\":\"bob\", \"funds\":10001 } ] }, \"block0\":[ { \"above_threshold\":10, \"pin\":\"1234\" }, { \"name\":\"alice\", \"pin\":\"1234\", \"funds\":10000 }, { \"name\":\"bob\", \"pin\":\"1234\", \"funds\":10000 }, { \"zero_funds\":10, \"pin\":\"1234\" } ] }, \"vote_plan\":{ \"vote_time\":{ \"vote_start\":0, \"tally_start\":134, \"tally_end\":234, \"slots_per_epoch\":3600 }, \"private\":true }, \"blockchain\":{ \"slot_duration\":4, \"block_content_max_size\":20971520, \"linear_fees\":{ \"constant\":0, \"coefficient\":0, \"certificate\":0 } }, \"data\":{ \"current_fund\":{ \"options\":\"yes,no\", \"proposals\":1134, \"challenges\":23, \"reviews\":7045, \"voting_power\":450, \"fund_name\":\"Fund9\", \"fund_id\":9, \"dates\":{ \"insight_sharing_start\":\"2022-05-01T12:00:00Z\", \"proposal_submission_start\":\"2022-05-02T12:00:00Z\", \"refine_proposals_start\":\"2022-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2022-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2022-05-04T12:00:00Z\", \"assessment_qa_start\":\"2022-05-05T12:00:00Z\", \"snapshot_time\":\"2022-05-07T12:00:00Z\", \"next_snapshot_time\":\"2023-05-07T12:00:00Z\", \"next_vote_start_time\":\"2022-07-14T12:00:00Z\" } }, \"next_funds\":[ { \"fund_name\":\"Fund10\", \"fund_id\":10, \"dates\":{ \"insight_sharing_start\":\"2023-05-01T12:00:00Z\", \"proposal_submission_start\":\"2023-05-02T12:00:00Z\", \"refine_proposals_start\":\"2023-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2023-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2023-05-04T12:00:00Z\", \"assessment_qa_start\":\"2023-05-05T12:00:00Z\", \"snapshot_time\":\"2023-05-07T12:00:00Z\", \"voting_start\":\"2023-07-14T12:00:00Z\", \"voting_tally_end\":\"2023-07-14T12:00:00Z\", \"voting_tally_start\":\"2023-07-14T12:00:00Z\", \"next_snapshot_time\":\"2023-07-07T12:00:00Z\", \"next_vote_start_time\":\"2023-07-14T12:00:00Z\" } } ] }, \"version\":\"3.8\"\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Full Example","id":"381","title":"Full Example"},"382":{"body":"This section describe configuration section which can be passed as argument when starting vitup or send to already running environments in order to restart them through rest api.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"382","title":"Configuration"},"383":{"body":"{ \"parameters\": { \"tag\": \"latest\" }, \"content\": [ { \"rep_name\": \"alice\", \"ada\": 1000 }, { \"rep_name\": \"clarice\", \"ada\": 1000 }, { \"name\": \"bob\", \"registration\": { \"target\": [ [\"alice\",1] ], \"slotno\": 0 }, \"ada\": 1000 }, { \"name\": \"david\", \"registration\": { \"target\": [ [\"clarice\",1] ], \"slotno\": 0 }, \"ada\": 1000 } ] Below more detailed explanation for each section element","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Example","id":"383","title":"Example"},"384":{"body":"Snapshot parameters used when importing it to servicing station or mock. tag - snapshot tag which will be used when importing snapshot min_stake_threshold - Minimum lovelace which is required to participate in voting voting_power_cap - Maximum percentage of voting power before capping direct_voters_group - Name of direct registration holders representatives_group - Name of delegated registrations holders (representatives)","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » parameters","id":"384","title":"parameters"},"385":{"body":"Main content of snapshot","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » content","id":"385","title":"content"},"386":{"body":"For user convenience we allow untagged definition of actor. Actor can be representative or direct voter with some data. Depending on fields role is dynamically defined and user can focus only on scenario description pre-generated representative This variant will create new unique wallet with given ada amount rep_name - alias ada - voting power amount external representative Representative with just and voting key. Can be used for already existing wallet rep_name - alias voting_key - voting key in hex external delegator Delegator with just an address. Can be used for already existing wallet in the network name - alias address - address in hex pre-generated delegator Delegator with just an address. Can be used for already existing wallet in the network. Generated delegator will set up new mainnet wallet name - alias registration: registration definition which can be used to describe to which representative delegator delegates his voting power. Field need to define slot at which delegation occurs and distribution. Example: ... \"registration\": { \"target\": [ [ \"clarice\",1 ] ,[ \"alice\",2 ] ], \"slotno\": 0 }\n... Above example divides voting power into 3 parts and assign 1/3 to clarice and 2/3 to alice ada - ada amount Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » actor","id":"386","title":"actor"},"387":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation","id":"387","title":"Data Generation"},"388":{"body":"For developer convenience an in-memory backend is available. Idea is the same as above but env is more lightweight and does not spawn jormungandr or vit-servicing-station. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Mock","id":"388","title":"Mock"},"389":{"body":"Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Configuration","id":"389","title":"Configuration"},"39":{"body":"This is similar to the previous case, but configuring a genesis file is needed. Consult the Advanced section for more information on this procedure.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Creating your own network","id":"39","title":"Creating your own network"},"390":{"body":"vitup start mock --config example\\mock\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Start","id":"390","title":"Start"},"391":{"body":"For full api specs please visit: Mock REST API V0 List Files curl --location --request GET 'http://{mock_address}/api/control/files/list' Get File curl --location --request GET 'http://{mock_address}/api/control/files/get/{path_to_file}' Health curl --location --request GET 'http://{mock_address}/api/health' Change Fund Id curl --location --request POST 'http://{mock_address}/api/control/command/fund/id/{new_fund_id}' Add new fund curl --location --request PUT 'http://{mock_address}/api/control/command/fund/update' \\\n--header 'Content-Type: application/json' \\\n--data-raw '\n{ \"id\": 20, \"fund_name\": \"fund_3\", \"fund_goal\": \"How will we encourage developers and entrepreneurs to build Dapps and businesses on top of Cardano in the next 6 months?\", \"voting_power_threshold\": 8000000000, \"fund_start_time\": \"2022-05-04T10:50:41Z\", \"fund_end_time\": \"2022-05-04T11:00:41Z\", \"next_fund_start_time\": \"2022-06-03T10:40:41Z\", \"registration_snapshot_time\": \"2022-05-04T07:40:41Z\", \"next_registration_snapshot_time\": \"2022-06-02T10:40:41Z\", \"chain_vote_plans\": [ { \"id\": 2136640212, \"chain_voteplan_id\": \"ad6eaebafd2cca7e1829df26c57b340a98b9d513b7eddec8561883f1b99f3b9e\", \"chain_vote_start_time\": \"2022-05-04T10:50:41Z\", \"chain_vote_end_time\": \"2022-05-04T11:00:41Z\", \"chain_committee_end_time\": \"2022-05-04T11:10:41Z\", \"chain_voteplan_payload\": \"public\", \"chain_vote_encryption_key\": \"\", \"fund_id\": 20 } ], \"challenges\": [ { \"id\": 1, \"challenge_type\": \"community-choice\", \"title\": \"Universal even-keeled installation\", \"description\": \"Upgradable\", \"rewards_total\": 7686, \"proposers_rewards\": 844, \"fund_id\": 20, \"challenge_url\": \"http://schneider-group.info\", \"highlights\": { \"sponsor\": \"Kreiger and Wuckert and Sons\" } } ]\n} ' Accept all Fragments Makes mock to accept all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/accept' Reject all Fragments Makes mock to reject all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reject' Hold all Fragments Makes mock to hold all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/pending' Reset Fragment strategy Makes mock to validate all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reset' Make backend unavailable Mock will reject all connections (returns 500) curl --location --request POST 'http://{mock_address}/api/control/command/available/false' Make backend available Mock will accept all connections curl --location --request POST 'http://{mock_address}/api/control/command/available/true' Make account endpoint unavailable Mock will reject n calls to account endpoint and as a result voting app won’t receive voting power for some time. This endpoint assume that one who changes block-account endpoint knows what is the frequency of calls from client and ultimately can be translated to some time of unavailability. curl --location --request POST 'http://{mock_address}/api/control/command/block-account/{number_of_calls_to_reject}' Make account endpoint available Mock will reset account endpoint unavailability curl --location --request POST 'http://{mock_address}/api/control/command/block-account/reset' Add new voters snapshot for specific tag Add (or overwrite) voters snapshot for this particular tag curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/add/{tag}' \\\n--header 'Content-Type: application/json' \\\n--data-raw ' [{\"voting_group\":\"direct\",\"voting_key\":\"241799302733178aca5c0beaa7a43d054cafa36ca5f929edd46313d49e6a0fd5\",\"voting_power\":10131166116863755484},{\"voting_group\":\"dreps\",\"voting_key\":\"0e3fe9b3e4098759df6f7b44bd9b962a53e4b7b821d50bb72cbcdf1ff7f669f8\",\"voting_power\":9327154517439309883}]' Create new voters snapshot for specific tag Create snapshot json which can be uploaded to mock by using ../snapshot/add command. See mock configuration for more details. Example: curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/create' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"tag\": \"daily\", \"content\": [ { \"count\": 2, \"level\": 5000 }, { \"name\": \"darek\", \"funds\": 100 }, { \"key\":\"318947a91d109da7109feaf4625c0cc4e83fe1636ed19408e43a1dabed4090a3\", \"funds\":300 }\n]\n}' Reset environment Resets environment data curl --location --request POST 'http://{mock_address}/api/control/command/reset' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"initials\": { \"block0\": [ { \"above_threshold\": 10, \"pin\": \"1234\" }, { \"name\": \"darek\", \"pin\": \"1234\", \"funds\": 10000 } ] }, \"vote_plan\": { \"vote_time\": { \"vote_start\": 0, \"tally_start\": 100, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true }, \"blockchain\": { \"slot_duration\": 2, \"block_content_max_size\": 20971520, \"block0_time\": \"2022-03-17T05:00:00Z\", \"linear_fees\": { \"constant\": 0, \"coefficient\": 0, \"certificate\": 0 } }, \"data\": { \"options\": \"yes,no\", \"snapshot_time\": \"2022-01-06T11:00:00Z\", \"next_snapshot_time\": \"2022-04-07T11:00:00Z\", \"next_vote_start_time\": \"2022-04-11T11:00:00Z\", \"proposals\": 936, \"challenges\": 25, \"reviews\": 5190, \"voting_power\": 450, \"fund_name\": \"Fund7\", \"fund_id\": 6 }, \"version\":\"3.6\"\n}' see data generation guide for more details Control Health Checks if mock is up curl --location --request POST 'http://{mock_address}/api/control/health' Logs Mock stores record of each request send to it. This endpoint gets all logs from mock curl --location --request POST 'http://{mock_address}/api/control/logs/get'","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin rest commands","id":"391","title":"Admin rest commands"},"392":{"body":"Admin CLI is an alternative for all above calls, available under vitup project. example: vitup-cli --endpoint {mock} disruption control health Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin cli","id":"392","title":"Admin cli"},"393":{"body":"Mock farm is a simple extension for mock service. It allows to run more that one mock at once and give more control to user in term of starting and stopping particular mock instance.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Mock Farm","id":"393","title":"Mock Farm"},"394":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, working_directory: path to folder which config files will be dumped, mocks-port-range: range of ports assigned for usage, protocol: decide whether mock farm should be exposed as http or https, local: should service be exposed on all network interfaces or only 127.0.0.1, token: token limiting access to environment. Must be provided in header API-Token for each request Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock-farm/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Configuration","id":"394","title":"Configuration"},"395":{"body":"vitup start mock-farm --config example\\mock\\mock-farm\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Start","id":"395","title":"Start"},"396":{"body":"OpenApi Requests collection Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Documentation","id":"396","title":"Documentation"},"397":{"body":"In order to take out the burden of providing entire configuration vitup has two configuration modes: quick - which runs on defaults and allow user to override most important parameters using cli arguments: vitup start quick advanced - which allows to defined full configuration as well as external static files for proposals and challenges vitup start advanced","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Configuration modes","id":"397","title":"Configuration modes"},"398":{"body":"There are 4 run modes available in vitup: interactive - where user can push some fragments or query status of nodes endless - [Default] just simple run until stopped by user service - additional manager service will be published at 0.0.0.0:3030. They allow to control (stop/start) and provides resources over http (qr codes or secret keys) mock - lightweight version of backend with does not spawn any jormungandr or vit-servicing-station services. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Run Modes","id":"398","title":"Run Modes"},"399":{"body":"There are two ways of starting vitup in endless mode. One with limited configuration and one with giving full control. vitup start quick --mode endless .. or vitup start advanced --mode endless ..","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Endless mode","id":"399","title":"Endless mode"},"4":{"body":"Jörmungandr refers to the Midgard Serpent in Norse mythology. It is a hint to Ouroboros , the Ancient Egyptian serpent, who eat its own tail, as well as the IOHK paper on proof of stake.","breadcrumbs":"Core Ledger » Core Ledger » Mythology","id":"4","title":"Mythology"},"40":{"body":"The software is bundled with 2 different command line software: jormungandr : the node; jcli : Jörmungandr Command Line Interface, the helpers and primitives to run and interact with the node.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Command line tools","id":"40","title":"Command line tools"},"400":{"body":"vitup start quick --mode service .. or vitup start advanced --mode service .. Once environment is up one can check status or modify existing environment:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Service mode","id":"400","title":"Service mode"},"401":{"body":"start - in order to start new voting stop - stops currently running vote backend (usually it takes 1 min to stop it) status - check status of environment: Idle - environment is not started Starting - environment is starting, please wait until its status is Running, Running - environment is not running and should be accessible, Stopping - environment is stopping, please wait until its Idle to start it with different parameters, files: In order to get qr-codes or secret files from env, two operations are provided: List Files - list all files in data directory for current run Get File - downloads particular file which is visible in List Files operation result","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Admin Operations","id":"401","title":"Admin Operations"},"402":{"body":"Voting backend admin console is an REST API accessible over http or https on port 3030. Using POST/GET http methods admin can send some operations to environment. There are various apps capable of sending REST commands. The simplest is to download Postman and use UI to fire up commands. Download postman: https://www.postman.com/downloads/ Review quick guide, how to send dummy request: https://learning.postman.com/docs/getting-started/sending-the-first-request/ Review guide, how to send different requests with arguments: https://learning.postman.com/docs/sending-requests/requests/ Available commands:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » how to send operations","id":"402","title":"how to send operations"},"403":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/command/status Response Example: Running","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » check environment status","id":"403","title":"check environment status"},"404":{"body":"Default parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start Response Example: start event received Custom parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start/default BODY: json with configuration Response Example: start event received This requests need to pass environment configuration file in Body. stop environment Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/stop Response Example: stop event received","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » start environment","id":"404","title":"start environment"},"405":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/files/list Response Example: { \"content\": { \"network\": [ \"Leader4/node.log\", \"Leader4/node_config.yaml\", \"Leader4/node_secret.yaml\", \"vit_station/vit_config.yaml\", \"initial_setup.dot\", \"Leader1/node.log\", \"Leader1/node_config.yaml\", \"Leader1/node_secret.yaml\", \"Leader3/node.log\", \"Leader3/node_config.yaml\", \"Leader3/node_secret.yaml\", \"Leader2/node.log\", \"Leader2/node_config.yaml\", \"Leader2/node_secret.yaml\", \"Wallet_Node/node.log\", \"Wallet_Node/node_config.yaml\", \"Wallet_Node/node_secret.yaml\" ], \"qr-codes\": [ \"qr-codes/zero_funds_12_0000.png\", \"qr-codes/wallet_25_above_8000_1234.png\", \"qr-codes/wallet_12_below_8000_9807.png\", \"qr-codes/wallet_30_below_8000_9807.png\" ], \"private_keys\": [ \"wallet_13_below_8000\", \"wallet_26_below_8000\", \"wallet_23_above_8000\", \"wallet_26_above_8000\" ], \"private_data\": [ \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/communication_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/encrypting_vote_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/member_secret_key.sk\" ], \"blockchain\": [ \"block0.bin\", \"genesis.yaml\" ] }, \"root\": \"./vit_backend\", \"blockchain_items\": [ \"block0.bin\", \"genesis.yaml\" ]\n}","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » list files","id":"405","title":"list files"},"406":{"body":"User can list or view files available for current voting. To list all available files /api/control/files/list endpoint can be utilized. Then relative path can be provided in /api/control/files/get/.. endpoint. For example: http://{env_endpoint}:3030/api/control/files/get/qr-codes/zero_funds_12_0000.png Request Type: GET Endpoint : http://{env_endpoint}:3030/files/get/{file_path }","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » get files","id":"406","title":"get files"},"407":{"body":"TBD Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Interactive mode","id":"407","title":"Interactive mode"},"408":{"body":"","breadcrumbs":"Core VIT Servicing Station » Core VIT Servicing Station » Core VIT Servicing Station","id":"408","title":"Core VIT Servicing Station"},"409":{"body":"Vit servicing station tests project is a container project vit-servicing-station tests. Tests are validating server correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » vit-servicing-station-tests","id":"409","title":"vit-servicing-station-tests"},"41":{"body":"","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Installation","id":"41","title":"Installation"},"410":{"body":"","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Quick start","id":"410","title":"Quick start"},"411":{"body":"In order to run test vit-servicing-station-server need to be installed or prebuilt.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Prerequisites","id":"411","title":"Prerequisites"},"412":{"body":"In order to build vit-servicing-station in main project folder run: cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Start tests","id":"412","title":"Start tests"},"413":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.)","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Tests categories","id":"413","title":"Tests categories"},"414":{"body":"cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run all functional tests","id":"414","title":"How to run all functional tests"},"415":{"body":"cd vit-servicing-station-tests\ncargo test --features non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run performance tests","id":"415","title":"How to run performance tests"},"416":{"body":"cd vit-servicing-station-tests\ncargo test --features soak,non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run endurance tests","id":"416","title":"How to run endurance tests"},"417":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Frequency","id":"417","title":"Frequency"},"418":{"body":"","breadcrumbs":"Unified Platform » Unified Platform » Unified Platform","id":"418","title":"Unified Platform"},"419":{"body":"The Catalyst-Cardano bridge is a custom bridge interface between Catalyst and a Cardano Node. It tracks data relevant to the unified Catalyst system, as it appears on the Cardano network, in real-time. The bridge is not just a data logger, it also: Acts as an event trigger for other Catalyst systems. Acts as an information server to data pertinent to Catalyst operations.","breadcrumbs":"Unified Platform » Overview » Overview » Overview","id":"419","title":"Overview"},"42":{"body":"This is the recommended method. Releases are all available here .","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From a release","id":"42","title":"From a release"},"420":{"body":"Catalyst has used a tool called dbsync to aquire “snapshot” data. A “snapshot” is a record at a moment in time of all staked ADA in the network. dbsync is a tool which captures a relational interpretation of the Cardano blockchain to an SQL database. This is useful for general-purpose queries of information contained on Cardano, but to query bulk data it is slow, and complex. The relational structure means that individual transactions need to be pieced together from multiple tables. Even with indexes this exerts a heavy efficiency toll when a single transactions state is queried. When bulk data is queried, it results in a large and complex query which takes a very long time to run (on the order of hours). dbsync itself takes a very very long time to sync to the blockchain, and get progressively slower. As at mid january 2023, one dbsync instance in a production environment took more than 5 days to sync with a local node. It is supposed to be possible to recover dbsync database from a backup, however experience shows this is a time consuming process itself. It took more than 12 hours just to load the backup image into the database, but then the node would not sync with main net. These issues cause excessive complexity, slow operation and fragile environments. Project Catalyst is also not in control of the dbsync database schema, and the schema can change between revisions. This could mean the entire database needs to be re-synched (taking days), or the schema changes and breaks tools which rely on the schema.","breadcrumbs":"Unified Platform » Overview » Overview » Issues with the previous systems","id":"420","title":"Issues with the previous systems"},"421":{"body":"The solution detailed here is a new bridge service, that has the following features: Can sync from multiple redundant nodes. Does not need to trust any single node (so it can sync from public nodes). Focused on data and events required by Project Catalyst: Registration Records at all points in the past. Staked ADA at all points in the past. Minimum necessary state to track staked ADA. More efficient database schema. Schema is not accessed directly but via a simple API Service. Prevents downstream consumers from breaking if the DB Schema needs to change. Does not need to snapshot: Data is accumulated progressively, not at instants in time. Data storage allows the state at any past time to be calculated simply and efficiently. Is easy to independently deploy by the Catalyst Community, so they can independently validate data reported by Project Catalyst. Distributed use does not rely on any Catalyst-supplied data, which improves audibility and trust.","breadcrumbs":"Unified Platform » Overview » Overview » The solution","id":"421","title":"The solution"},"422":{"body":"The System has these components: 1 or more Cardano Nodes (Preferably 2 or more) A Pipeline which processes the data from the nodes: Read blocks from multiple nodes Validate blocks by independent reference (A valid block has n independent copies) Queue valid blocks for processing. Read valid blocks from the queue and process every transaction in the block. Calculate the change in staked ADA caused by all transactions in the block. Validate all Registration Records in the block: Record all validated registrations. Record all in-valid registrations (including the reason the registration is invalid). Queue the complete block of transactions, ledger state and registration updates for storing and alerting. Lock the Databases for writing (Transactional) Check if the block being recorded is new: New: Record the updated current ledger state. Record the staked ADA for every stake address which changed in this block (time series record) Record the registrations (time series record) Send alerts to all upstream subscribers that subscribed events have changed. Commit the transaction (unlocks the DB) Already Recorded: Abort the write transaction (release the DB) Read the recorded data from the DB Validate the DB data with the data calculated from the block. If there is any discrepancy, LOG errors and send configured alerts. A REST/HTTP service to report catalyst bridge data Report current staked/unpaid rewards in ADA for any stake address. Report staked/unpaid rewards in ADA for any stake address, at any past time. Report staked/unpaid rewards over a period of previous time, with various processing: Daily Averages All records other Calculate voting power given a set of voting power options for a single address, or all registrations of a particular type. Snapshot (instantaneous) voting power Time window based voting power calculation Linear vs functional voting power function of raw ADA. Capped at a particular % other parameters which can affect the voting power calculation. Catalyst Event stream published via: Kafka other","breadcrumbs":"Unified Platform » Overview » Overview » Architecture Overview","id":"422","title":"Architecture Overview"},"423":{"body":"ContractKeycontract_key: byteshash(concat(contract_hash, parameter_hash))ContractHashcontract_hash : byteshash(Contract.as_bytes())ParameterHashparameter_hashhash(Paramters.as_bytes())ContractCompiled Wasmas_bytes()ParametersStructured Parameter Dataas_bytes() hunger noticedchoose recipedesired dish?","breadcrumbs":"Unified Platform » Overview » Overview » Architectural Diagram","id":"423","title":"Architectural Diagram"},"424":{"body":"The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. However, it is also a useful and capable tool in its own right. It has a secondary use case of allowing the community to INDEPENDENTLY validate their registrations and voting power. Accordingly, it is developed as a stand-alone service. This means it can be easily distributed and deployed INDEPENDENTLY of the rest of the catalyst unified backend services. It has two internal long running tasks. Read, validate and record latest registrations/delegations from the linked block chain. Read and record running total balance and unclaimed rewards for every stake address. It also exposes a Voting Power API. Get voting power for Stake Address or Voting Key as at (timestamp). Would respect the registrations valid at that time. So if you asked for your voting power but you were delegated, the API would return you have X personal voting power, and Y..Z Voting power of yours has been delegated to Keys A-B. Options: Max Registration Age (So regitrations before this date/time are not considered). Must have valid payment address. (So we can later make a valid payment address a necessity if required, and this would also exclude just using stake address.) Voting power calculation type Absolute on the time of snapshot Average Maximum daily value Parameter: Length of time to average over (in days). Voting power linearity Linear (1 ADA = X voting power). Where X is a parameter. Logarithmic (Voting power is attenuated by a logarithmic function). Would need parameters to define the curve. Other?? Get Registration/Delegation information for a Stake Address/Voting Key as at a time. Similar to above but does NOT do any Get all active registrations as at a time. Time and max age of registrations are parameters. If stake addresses without registration are included in the output. What do you think? (edited)","breadcrumbs":"Unified Platform » Overview » Overview » Integration to the Catalyst Unified Backend","id":"424","title":"Integration to the Catalyst Unified Backend"},"425":{"body":"The bridge will need at least 1, and preferably more Cardano Nodes to read blocks from. The Bridge will employ a local consensus model, in place of the absolute trust of a single node. Part of the configuration of the bridge will need to be: the addresses of the available nodes that may be requested for new blocks. the number of nodes which must send concurring blocks before a block is accepted. the number of blocks to retrieve in advance of the current head. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Cardano Nodes » Cardano Nodes","id":"425","title":"Cardano Nodes"},"426":{"body":"","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Bridge Pipeline » Bridge Pipeline","id":"426","title":"Bridge Pipeline"},"427":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Block Reader » Block Reader","id":"427","title":"Block Reader"},"428":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » REST HTTP Service » REST HTTP Service","id":"428","title":"REST HTTP Service"},"429":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Event Stream » Event Stream","id":"429","title":"Event Stream"},"43":{"body":"Jörmungandr’s code source is available on github . Follow the instructions to build the software from sources.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From source","id":"43","title":"From source"},"430":{"body":"The database is private to the catalyst-cardano bridge. Access to it is through the Catalyst-Cardano bridge service. The schema for this database will be managed by the service and is expected to evolve. The concrete schema will be defined as the service is developed, and responsive to the needs of the service. Rather than defining an abstract “ideal” schema in advance, and then being tied to an inefficient implementation.","breadcrumbs":"Unified Platform » Overview » Database » Database » Database","id":"430","title":"Database"},"431":{"body":"Initially, the service will target and store data in Postgresql . However, it should be written in such a way that we can easily replace Postgresql with another DB, such as SurrealDB . To achieve this, database interactions should be contained to a crate which abstracts these interactions. For speed, the service should ALSO attempt to cache as much state internally as it can. However it must be kept in mind that multiple services can and will update the backing database. Accordingly, the internal state should be checked and refreshed/updated as required.","breadcrumbs":"Unified Platform » Overview » Database » Database » Servers","id":"431","title":"Servers"},"432":{"body":"There will initially be three logical databases, though they will NOT be in separate schemas and queries can join information between them. Registration Database Staked ADA Database Transaction State Database","breadcrumbs":"Unified Platform » Overview » Database » Database » High-Level Data Design","id":"432","title":"High-Level Data Design"},"433":{"body":"There will be a Registration Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Registrations Database","id":"433","title":"Registrations Database"},"434":{"body":"The data needed to be stored in each registration record is: The time and date the registration was made. Derived from the block date/time on Cardano, NOT the time it was detected. The location of the transaction on the blockchain. Allows the transaction to be verified against the blockchain. The raw contents of the transaction. The full raw transaction in binary. Allows information not directly pertinent to Catalyst to be retained. The Type of registration. CIP-15 CIP-36 Others Currently, there are only CIP-15 and CIP-36 voter registrations, however, there WILL be others. Invalidity Report Is the registration transaction Valid according to Catalyst transaction validity rules? true - Then this field is NULL. false - then this field contains a JSON formatted report detailing WHY it was invalid. Registration specific fields Fields which represent the meta-data of the registration itself. These fields need to be able to be efficiently searched.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Data","id":"434","title":"Data"},"435":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Queries","id":"435","title":"Queries"},"436":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. Return the MOST current registration.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Current Voter Registration","id":"436","title":"Current Voter Registration"},"437":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. For each unique stake address: Return the MOST current registration. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » All Current Voter Registrations","id":"437","title":"All Current Voter Registrations"},"438":{"body":"There will be a Staked ADA Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked ADA Database","id":"438","title":"Staked ADA Database"},"439":{"body":"The data needed to be stored in each staked ADA record is: The Stake address. The time and date the ADA staked/rewarded changed. Derived from the block date/time on Cardano, NOT the time it was detected. IF the staked ADA changed MULTIPLE times in the same block: this record contains the total at the END of all updates. The block on the blockchain when this stake address total changed. Allows the transaction/s to be verified against the blockchain. The total staked ADA as at this Block. The total unpaid-rewards ADA as at this Block. Rewards are earned for stake addresses at the end of epochs. They are specially accounted for and need to be withdrawn. This total is the total of all ADA which has been awarded to the stake address but NOT yet withdrawn. Note: ONLY stake addresses which CHANGE are recorded. It’s possible (probable?) that ONLY one of the total staked ADA or total unpaid rewards ADA will update at a time in a single block. However, regardless of which total updates, the record must faithfully record the total current at that time for both. For example: Staked ADA starts at 1234 and Unpaid Rewards ADA starts at 95. At 12:43 Staked ADA changes to 1200 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 95. At 14:55 Unpaid Rewards changes to 143 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 143.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Data","id":"439","title":"Data"},"44":{"body":"All commands come with usage help with the option --help or -h. For jcli, it is possible to generate the auto completion with: jcli auto-completion bash ${HOME}/.bash_completion.d Supported shells are: bash fish zsh powershell elvish Note: Make sure ${HOME}/.bash_completion.d directory previously exists on your HD. In order to use auto completion you still need to: source ${HOME}/.bash_completion.d/jcli.bash You can also put it in your ${HOME}/.bashrc. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Help and auto completion","id":"44","title":"Help and auto completion"},"440":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Queries","id":"440","title":"Queries"},"441":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Current Staked ADA","id":"441","title":"Current Staked ADA"},"442":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). For each unique stake address: Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » All Current Staked ADA","id":"442","title":"All Current Staked ADA"},"443":{"body":"AsAt - The time the registration must be valid by. Age - The Oldest record to return. For the period requested return a list of all staked balances where each record in the list is: date-time - The time this balance applies to. slot - The slot on the Cardano blockchain the balance changed in. staked - The total Staked at this time. rewarded - The total Unclaimed rewards at this time. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked Balances for a period","id":"443","title":"Staked Balances for a period"},"444":{"body":"This is NOT a time-series database, it tracks: the current state of the sync from the block chain all current UTXO’s any other data it needs to calculate staked-ADA changes as blocks arrive. It is updated to track current state and is not historical. This state is updated atomically, along with: The staked ADA database The registration database This ensures that the DB is always in-sync with discrete minted blocks on the block-chain. The DB NEVER store a partial block update. Data There is no firm specification of the data that needs to be stored. It should be adapted to efficiently and quickly allow for the functions of the process to execute. The ONLY critical information that it contains is the current block last synced. All other information and the structure of it will need to be decided during implementation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Transaction State Database » Transaction State Database","id":"444","title":"Transaction State Database"},"445":{"body":"","breadcrumbs":"Rust API » Rust API » Rust API","id":"445","title":"Rust API"},"446":{"body":"","breadcrumbs":"Rust API » Rust API Documentation and Packages » Rust API Documentation and Packages","id":"446","title":"Rust API Documentation and Packages"},"447":{"body":"blockchain chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser","breadcrumbs":"Rust API » Rust API Documentation and Packages » blockchain","id":"447","title":"blockchain"},"448":{"body":"db-sync-explorer jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » db-sync-explorer","id":"448","title":"db-sync-explorer"},"449":{"body":"explorer : explorer service for jormungandr cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » explorer : explorer service for jormungandr","id":"449","title":"explorer : explorer service for jormungandr"},"45":{"body":"In order to start the node, you first need to gather the blockchain information you need to connect to. the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. These information are essentials to start your node in a secure way. The genesis block is the first block of the blockchain. It contains the static parameters of the blockchain as well as the initial funds. Your node will utilise the Hash to retrieve it from the other peers. It will also allows the Node to verify the integrity of the downloaded genesis block . The trusted peers are the nodes in the public network that your Node will trust in order to initialise the Peer To Peer network.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting a passive node","id":"45","title":"Starting a passive node"},"450":{"body":"integration-tests catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit iapyx catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vitup catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » integration-tests","id":"450","title":"integration-tests"},"451":{"body":"jormungandr : Midgard Serpent cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandr : Midgard Serpent","id":"451","title":"jormungandr : Midgard Serpent"},"452":{"body":"jormungandrwallet chain-addr chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandrwallet","id":"452","title":"jormungandrwallet"},"453":{"body":"mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » mjolnir","id":"453","title":"mjolnir"},"454":{"body":"settings","breadcrumbs":"Rust API » Rust API Documentation and Packages » settings","id":"454","title":"settings"},"455":{"body":"sparse-array","breadcrumbs":"Rust API » Rust API Documentation and Packages » sparse-array","id":"455","title":"sparse-array"},"456":{"body":"vit-servicing-station-cli vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-cli","id":"456","title":"vit-servicing-station-cli"},"457":{"body":"vit-servicing-station-server vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-server","id":"457","title":"vit-servicing-station-server"},"458":{"body":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes symmetric-cipher wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » Rust API Documentation and Packages » wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology","id":"458","title":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology"},"459":{"body":"This guide is intended to be a set of guidelines, not hard rules. These represent the default for Rust code. Exceptions can (and sometimes should) be made, however: They should have a comment explaining what is special about this code which means the rule shouldn’t apply here. Exceptions should be highlighted in the PR and discussed with the team. 🦀 Rust Style Guide Toolchain Basic Rules Creating a new crate Exceptions for clippy Guidelines Prefer references over generics Abbreviations and naming things General advice around names Pay attention to the public API of your crate Type safety Use newtypes (a.k.a. microtypes) Don’t over-abstract Unsafe code Docs Doctests Write code as if it’s going to be in a web server Error handling Handling expected errors Use thiserror for recoverable errors Use color_eyre for unrecoverable errors","breadcrumbs":"Rust API » 🦀 Rust Style Guide » 🦀 Rust Style Guide","id":"459","title":"🦀 Rust Style Guide"},"46":{"body":"Your node configuration file may look like the following:","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » The node configuration","id":"46","title":"The node configuration"},"460":{"body":"We use the latest stable version of Rust. You can get an up-to-date toolchain by running nix develop. If you’re not a Nix user, make sure you have the correct versions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Toolchain","id":"460","title":"Toolchain"},"461":{"body":"Formatting is “whatever rustfmt does”. In cases where rustfmt doesn’t yet work (i.e. macros, let-else), try to stay consistent with the rest of the codebase. Clippy should be used whenever possible, with pedantic lints turned on. There are some lints (particularly those from pedantic) that are generally unhelpful, often due to high false positive rates There is a list of known exceptions that can be added to if you run into anything particularly bad. Clippy is not enabled for older parts of the codebase. This is allowed for legacy code, but any new code should have clippy enabled. We’re actively working to get it enabled on everything Avoid raw identifiers. Instead, use abbreviations/misspellings (i.e. r#crate -> krate, r#type -> ty, etc) TLDR: run: cargo fmt\ncargo clippy\ncargo `clippy` --all-features before submitting a PR","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Basic Rules","id":"461","title":"Basic Rules"},"462":{"body":"We add the following preamble to all crates’ lib.rs: #![warn(clippy::pedantic)]\n#![forbid(clippy::integer_arithmetic)]\n#![forbid(missing_docs)]\n#![forbid(unsafe_code)]\n#![allow(/* known bad lints outlined below */)] We enable #![forbid(missing_docs)] for a couple of reasons: it forces developers to write doc comments for publicly exported items it serves as a reminder that the item you’re working on is part of your public API We enable #![forbid(unsafe_code)] to reinforce the fact that unsafe code should not be mixed in with the rest of our code . More details are below. We enable #![forbid(integer_arithmetic)] to prevent you from writing code like: let x = 1;\nlet y = 2;\nlet z = x + y; Why is this bad? Integer arithmetic may panic or behave unexpectedly depending on build settings. In debug mode, overflows cause a panic, but in release mode, they silently wrap. In both modes, division by 0 causes a panic. By forbidding integer arithmetic, you have to choose a behaviour, by writing either: a.checked_add(b) to return an Option that you can error-handle a.saturating_add(b) to return a + b, or the max value if an overflow occurred a.wrapping_add(b) to return a + b, wrapping around if an overflow occurred By being explicit, we prevent the developer from “simply not considering” how their code behaves in the presence of overflows. In a ledger application, silently wrapping could be catastrophic, so we really want to be explicit about what behaviour we expect.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Creating a new crate","id":"462","title":"Creating a new crate"},"463":{"body":"These lints are disabled: clippy::match_bool - sometimes a match statement with true => and false => arms is sometimes more concise and equally readable clippy::module_name_repetition - warns when creating an item with a name than ends with the name of the module it’s in clippy::derive_partial_eq_without_eq - warns when deriving PartialEq and not Eq. This is a semver hazard. Deriving Eq is a stronger semver guarantee than just PartialEq, and shouldn’t be the default. clippy::missing_panics_doc - this lint warns when a function might panic, but the docs don’t have a panics section. This lint is buggy, and doesn’t correctly identify all panics. Code should be written to explicitly avoid intentional panics. You should still add panic docs if a function is intended to panic under some conditions. If a panic may occur, but you’d consider it a bug if it did, don’t document it. We disable this lint because it creates a false sense of security.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Exceptions for clippy","id":"463","title":"Exceptions for clippy"},"464":{"body":"","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Guidelines","id":"464","title":"Guidelines"},"465":{"body":"It’s tempting to write a function like this: fn use_str(s: impl AsRef) { let s = s.as_ref(); println!(\"{s}\");\n} Unfortunately, this has a few downsides: it increases compile times if used in a trait, it makes that trait not object-safe if the body of the function is large, it bloats binary size, which can hurt performance by increasing pressure on the instruction cache it makes type inference harder Now that’s not to say you should never use generics. Of course, there are plenty of good reasons to use generics. But if the only reason to make your function generic is “slightly easier to use at the call-site”, consider just using a plain reference/slice instead: fn use_str(s: &str) { println!(\"{s}\");\n} This does mean you may have to use .as_ref() at the call-site, but generally this is preferred compared to the downsides of using generics. Similar logic applies to AsRef, Into, and a few other common types. The general principle is that a little bit of extra text at the call-site is usually worth the benefits from not having generic functions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Prefer references over generics","id":"465","title":"Prefer references over generics"},"466":{"body":"We should be careful with abbreviations. Similar to above, they do indeed shorten the code you write, but at the cost of some readability. It’s important to balance the readability cost against the benefits of shorter code. Some guidelines for when to use abbreviations: if it’s something you’re going to type a lot, an abbreviation is probably the right choice. (i.e. s is an OK name for a string in very string-heavy code) if it’s a well-known abbreviation, it’s probably good (e.g. ctx for “context”, db for “database”) if it’s ambiguous (i.e. it could be short for multiple things) either use the full word, or a longer abbreviation that isn’t ambiguous. Remember that abbreviations are context-sensitive. (if I see db in a database library, it’s probably “database”. If I see it in an audio processing library it is probably “decibels”). General advice around names avoid foo.get_bar(), instead just call it foo.bar() use into_foo() for conversions that consume the original data use as_foo() for conversions that convert borrowed data to borrowed data use to_foo() for conversions that are expensive use into_inner() for extracting a wrapped value","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Abbreviations and naming things","id":"466","title":"Abbreviations and naming things"},"467":{"body":"Items (functions, modules, structs, etc) should be private by default. This is what Rust does anyways, but make sure you pay attention when marking something pub. Try to keep the public API of your crate as small as possible. It should contain only the items needed to provide the functionality it’s responsible for. A good “escape hatch” is to mark things as pub(crate). This makes the item pub but only within your crate . This can be handy for “helper functions” that you want to use everywhere within your crate, but don’t want to be available outside.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Pay attention to the public API of your crate","id":"467","title":"Pay attention to the public API of your crate"},"468":{"body":"Rust has a powerful type system, so use it! Where possible, encode important information in the type system. For example, using NonZeroU64 might make sense if it would be ridiculous for a number to be zero. Of course, you can go too far with this. Rust’s type system is Turing-complete, but we don’t want to write our whole program in the type system.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Type safety","id":"468","title":"Type safety"},"469":{"body":"If you are handling email addresses, don’t use String. Instead, create a newtype wrapper with: struct Email(String); This prevents you from using a Password where you meant to use an Email, which catches more bugs at compile time. Consider using the microtype library to generate boilerplate: #[string]\nString { Email, Username, Address, // etc...\n} This generates struct Email(String), struct Username(String), etc. for you. See the docs for more info. If your type is responsible for handling secret data, mark it #[secret] to: zeroize the memory on drop redact the Debug impl prevent serialization prevent use without .expose_secret()","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Use newtypes (a.k.a. microtypes)","id":"469","title":"Use newtypes (a.k.a. microtypes)"},"47":{"body":"This config shouldn’t work as it is, the ip address and port for the trusted peer should be those of an already running node. Also, the public_address (‘u.x.v.t’) should be a valid address (you can use an internal one, eg: 127.0.0.1). Furthermore, you need to have permission to write in the path specified by the storage config. storage: \"/mnt/cardano/storage\" rest: listen: \"127.0.0.1:8443\" p2p: trusted_peers: - address: \"/ip4/104.24.28.11/tcp/8299\" id: ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d Description of the fields: storage: (optional) Path to the storage. If omitted, the blockchain is stored in memory only. log: (optional) Logging configuration: level: log messages minimum severity. If not configured anywhere, defaults to “info”. Possible values: “off” “critical” “error” “warn” “info” “debug” “trace” format: Log output format, plain or json. output: Log output destination. Possible values are: stdout: standard output stderr: standard error syslog: syslog (only available on Unix systems) syslogudp: remote syslog (only available on Unix systems) host: address and port of a syslog server hostname: hostname to attach to syslog messages journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages. file: path to the log file. rest: (optional) Configuration of the REST endpoint. listen: address : port to listen for requests tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled p2p: P2P network settings trusted_peers: (optional) the list of nodes’s multiaddr with their associated public_id to connect to in order to bootstrap the P2P topology (and bootstrap our local blockchain); public_id: (optional) the node’s public ID that will be used to identify this node to the network. public_address: multiaddr string specifying address of the P2P service. This is the public address that will be distributed to other peers of the network that may find interest in participating to the blockchain dissemination with the node. listen: (optional) address : port to specifies the address the node will listen to to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: The dissemination topics this node is interested to hear about: messages: Transactions and other ledger entries. Typical setting for a non-mining node: low. For a stakepool: high; blocks: Notifications about new blocks. Typical setting for a non-mining node: normal. For a stakepool: high. max_connections: The maximum number of simultaneous P2P connections this node should maintain. explorer: (optional) Explorer settings enabled: True or false no_blockchain_updates_warning_interval: (optional, seconds) if no new blocks were received after this period of time, the node will start sending you warnings in the logs.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Note","id":"47","title":"Note"},"470":{"body":"In general, prefer plain functions over a struct + trait implementation. For example, instead of this: // BAD\ntrait GetBar { fn bar(&self) -> &Bar;\n} impl GetBar for Foo { fn bar(&self) -> &Bar { &self.bar }\n} write this: // GOOD\nimpl Foo { fn bar(&self) -> &Bar { &self.bar }\n} I.e., don’t use a trait if you don’t need it. A common reason why people do this is to mock out a particular function call for testing. This can be useful in a few select places, such as interacting with the real world. Eg, networking, clocks, randomness, etc. However, it has some significant downsides. it means you’re not actually testing this code. This might be fine for some types of code (e.g. database code). It might be unreasonable to rely on a database for unit tests. However, if your whole test suite is organized around this, your business logic won’t get tested. it forces you to use a trait, which have restrictions that plain functions don’t have: it forces you into either generics or dynamic dispatch (often with a heap allocation if you don’t want to play the lifetime game) you may now have to think about object safety, which can be very tricky for some APIs async functions are not properly supported it’s not usable in a const context Some alternative patterns are: try to rewrite your test to avoid needing a mock if you know all the variants at compile time, consider using an enum swap out the implementation with conditional compilation","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Don’t over-abstract","id":"470","title":"Don’t over-abstract"},"471":{"body":"If you need unsafe code, put it in its own crate with a safe API. And really think hard about whether you need unsafe code. There are times when you absolutely do need it, but this project cares more about correctness than performance. If you find yourself wanting to use unsafe, try the following: if you want to create bindings to a C/C++ library: First, see if there is a pure-Rust implementation. Otherwise, search on crates.io for a _sys crate. if you want to create a cool data structure that requires unsafe: does it really need unsafe? is it a doubly linked list? If so, have you got benchmarks that show that a VecDeque is insufficient? Something something cache-friendly… is there a suitable implementation on crates.io? is this data structure really noticeably better than what we have in std? if you want to do a performance optimization (e.g. using unreachable_unchecked() to remove a bounds check): Encode it in the type system, and put it in a separate crate with a safe API. If you can’t do that, it’s probably an indication that the mental model is also too complicated for a human to keep track of. if you want to write a test that makes sure the code does the right thing “even in the presence of UB”, just don’t All unsafe code must be tested with Miri.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Unsafe code","id":"471","title":"Unsafe code"},"472":{"body":"As mentioned above, we should enable #![deny(missing_docs)] on all new code. But that doesn’t mean we shouldn’t document private items. Ideally, we’d document as much as possible. Of course, for tiny helper functions, or functions whose behaviour is obvious from looking don’t need documentation. For example, this sort of comment doesn’t add much: /// Sets self.bar to equal bar\nfn set_bar(&mut self, bar: Bar) { self.bar = bar;\n} If this is a private member, don’t bother with this comment. If it’s public, something like this is fine just to get clippy to shut up. But if it’s at all unclear what’s going on, try to use a more descriptive comment. If adding a dependency, add a comment explaining what the dependency does.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Docs","id":"472","title":"Docs"},"473":{"body":"Try to use doctests. Especially for less obvious code, a small example can be really helpful. Humans learn by copying examples, so providing some can drastically reduce the amount of time a new contributor needs to become productive. If you need some setup for your tests that you don’t want to render in docs, prefix the line with #. When combined with the include macro, this can lead to pretty concise but also powerful test setup. If you need some inspiration, check out the docstests for diesel.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Doctests","id":"473","title":"Doctests"},"474":{"body":"Write code as if it’s going to end up being run in a web server. This means a few things: all inputs are potentially malicious code should be usable as a library without going through a text interface (i.e. your library should expose a Rust API)","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Write code as if it’s going to be in a web server","id":"474","title":"Write code as if it’s going to be in a web server"},"475":{"body":"Error handling in Rust is complex, which represents the real-world complexity of error handling. Broadly speaking, there are two types of error: Expected errors are errors that are expected to occur during normal operation of the application. For example, in bug free code, it would still be expected to see network timeout errors, since that networking is inherently fallible. The exact error handling strategy may vary, but often involves returning a Result. Unexpected errors are errors that are not expected to occur. If they do occur, it represents a bug. These errors are handled by panicking. As much as possible, we try to make these cases impossible by construction by using the correct types for data. For example, imagine you have a struct that represents “a list with at least one element”. You could write: struct NonEmptyList { inner: Vec,\n} impl NonEmptyList { /// Doesn't need to be an Option<&T> because the list is guaranteed to have at least 1 element fn first(&self) -> &T { inner.get(0).expect(\"guaranteed to have at least 1 element\") }\n} This would be fine , since it represents a bug if this panic is ever hit. But it would be better to write it like this: struct NonEmptyList { head: T, tail: Vec,\n} impl NonEmptyList { fn first(&self) -> &T { &self.head }\n} This provides the compiler with more information about the invariants of our type. This allows us to eliminate the error at compile time.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Error handling","id":"475","title":"Error handling"},"476":{"body":"Well-behaved code doesn’t panic. So if our response to encountering an expected error is to panic, our software is not well-behaved. Instead, we should use Result to represent data that might be an error. But how do we pick E? There are two main choices for E: Use thiserror for recoverable errors In contexts where we may want to recover from errors, we should use a dedicated error type. We generate these with thiserror: #[derive(Debug, Error)]\nenum FooError { #[error(\"failed to bar\")] Bar, #[error(\"failed to baz\")] Baz,\n} This allows the user to write: match try_foo() { Ok(foo) => println!(\"got a foo: {foo}\"), Err(FooError::Bar) => eprintln!(\"failed to bar\"), Err(FooError::Baz) => eprintln!(\"failed to baz\"),\n} Use color_eyre for unrecoverable errors In contexts where we don’t want to recover from errors, use Report from the color_eyre crate. This is a trait object based error type which allows you to “fire and forget” an error. While technically possible , it’s less ergonomic to recover from a Result. Therefore, only use this in contexts where the correct behaviour is “exit the program”. This is commonly the case in CLI apps. However , even in CLI apps, it’s good practice to split the logic into a lib.rs file (or modules) and have a separate binary. Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Handling expected errors","id":"476","title":"Handling expected errors"},"477":{"body":"","breadcrumbs":"Web API » Web API » Web API","id":"477","title":"Web API"},"478":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » dbSync Explorer HTTP/REST API V1 » dbSync Explorer HTTP/REST API V1","id":"478","title":"dbSync Explorer HTTP/REST API V1"},"479":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Servicing Station HTTP/REST API V0 » VIT Servicing Station HTTP/REST API V0","id":"479","title":"VIT Servicing Station HTTP/REST API V0"},"48":{"body":"jormungandr --config config.yaml --genesis-block-hash 'abcdef987654321....' The ‘abcdef987654321….’ part refers to the hash of the genesis. This should be given to you from one of the peers in the network you are connecting to. In case you have the genesis file (for example block-0.bin, because you are creating the network) you can get this hash with jcli. jcli genesis hash --input block-0.bin or, in case you only have the yaml file jcli genesis encode --input genesis.yaml | jcli genesis hash Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting the node","id":"48","title":"Starting the node"},"480":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock Farm HTTP/REST API V0 » VIT Testing Mock Farm HTTP/REST API V0","id":"480","title":"VIT Testing Mock Farm HTTP/REST API V0"},"481":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock HTTP/REST API V0 » VIT Testing Mock HTTP/REST API V0","id":"481","title":"VIT Testing Mock HTTP/REST API V0"},"482":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V0 » Vote Ledger HTTP/REST API V0","id":"482","title":"Vote Ledger HTTP/REST API V0"},"483":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V1 » Vote Ledger HTTP/REST API V1","id":"483","title":"Vote Ledger HTTP/REST API V1"},"484":{"body":"First off, thanks for taking the time to contribute! ❤️ All types of contributions are encouraged and valued. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 And if you like the project, but just don’t have time to contribute, that’s fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: Star the project Tweet about it Refer this project in your project’s readme Mention the project at local meetups and tell your friends/colleagues","breadcrumbs":"Contributing to Catalyst Core » Contributing to Catalyst Core","id":"484","title":"Contributing to Catalyst Core"},"485":{"body":"Code of Conduct I Have a Question I Want To Contribute Reporting Bugs Suggesting Enhancements Your First Code Contribution Improving The Documentation Styleguides Commit Messages","breadcrumbs":"Contributing to Catalyst Core » Table of Contents","id":"485","title":"Table of Contents"},"486":{"body":"This project and everyone participating in it is governed by the Catalyst Core Code of Conduct . By participating, you are expected to uphold this code. Please report unacceptable behavior to mailto:code-of-conduct@iohk.io .","breadcrumbs":"Contributing to Catalyst Core » Code of Conduct","id":"486","title":"Code of Conduct"},"487":{"body":"If you want to ask a question, we assume that you have read the available Documentation . Before you ask a question, it is best to search for existing Issues that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. If you then still feel the need to ask a question and need clarification, we recommend the following: Open an Issue . Provide as much context as you can about what you’re running into. Provide project and platform versions (rustc --version --verbose, etc), depending on what seems relevant. We will then take care of the issue as soon as possible.","breadcrumbs":"Contributing to Catalyst Core » I Have a Question","id":"487","title":"I Have a Question"},"488":{"body":"","breadcrumbs":"Contributing to Catalyst Core » I Want To Contribute","id":"488","title":"I Want To Contribute"},"489":{"body":"When contributing to this project, you must agree: that you have authored 100% of the content that you have the necessary rights to the content and that the content you contribute may be provided under the project license.","breadcrumbs":"Contributing to Catalyst Core » Legal Notice","id":"489","title":"Legal Notice"},"49":{"body":"It is possible to query the node via its REST Interface. In the node configuration, you have set something like: # ... rest: listen: \"127.0.0.1:8443\" #... This is the REST endpoint to talk to the node, to query blocks or send transaction. It is possible to query the node stats with the following end point: curl http://127.0.0.1:8443/api/v0/node/stats The result may be: {\"blockRecvCnt\":120,\"txRecvCnt\":92,\"uptime\":245} THE REST API IS STILL UNDER DEVELOPMENT Please note that the end points and the results may change in the future. To see the whole Node API documentation: Voting ledger REST API V0 Voting ledger REST API V1 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » REST Api » REST Api","id":"49","title":"REST Api"},"490":{"body":"Before Submitting a Bug Report A good bug report shouldn’t leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible. Make sure that you are using the latest version. Determine if your bug is really a bug and not an error on your side. e.g. using incompatible environment components/versions (Make sure that you have read the documentation . If you are looking for support, you might want to check this section ). To see if other users have experienced (and potentially already solved) the same issue you are having. Check if there is not already a bug report existing for your bug or error in the bug tracker . Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. Collect information about the bug: Stack trace (Traceback) OS, Platform and Version (Windows, Linux, macOS, x86, ARM) Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. Possibly your input and the output Can you reliably reproduce the issue? And can you also reproduce it with older versions? How Do I Submit a Good Bug Report? You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to contact@iohk.io . We use GitHub issues to track bugs and errors. If you run into an issue with the project: Open an Issue . (Since we can’t be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.) Explain the behavior you would expect and the actual behavior. Please provide as much context as possible. Describe the reproduction steps that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case. Provide the information you collected in the previous section. Once it’s filed: The project team will label the issue accordingly. A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps. The issue would then be marked as needs-repro. Bugs with the needs-repro tag will not be addressed until they are reproduced. If the team is able to reproduce the issue, it will be marked needs-fix. It may possibly be marked with other tags (such as critical). The issue will then be left to be implemented by someone .","breadcrumbs":"Contributing to Catalyst Core » Reporting Bugs","id":"490","title":"Reporting Bugs"},"491":{"body":"This section guides you through submitting an enhancement suggestion for Catalyst Core, including completely new features and minor improvements to existing functionality . Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions. Before Submitting an Enhancement Make sure that you are using the latest version. Read the documentation carefully. Find out if the functionality is already covered, maybe by an individual configuration. Perform a search to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. Find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you’re just targeting a minority of users, consider writing an add-on/plugin library. How Do I Submit a Good Enhancement Suggestion? Enhancement suggestions are tracked as GitHub issues . Use a clear and descriptive title for the issue to identify the suggestion. Provide a step-by-step description of the suggested enhancement in as many details as possible. Describe the current behavior and explain which behavior you expected to see instead and why. At this point you can also tell which alternatives do not work for you. You may want to include screenshots and animated GIFs . This can help you demonstrate the steps or point out the part which the suggestion is related to. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux. Explain why this enhancement would be useful to most Catalyst Core users. You may also want to point out the other projects that solved it better and which could serve as inspiration.","breadcrumbs":"Contributing to Catalyst Core » Suggesting Enhancements","id":"491","title":"Suggesting Enhancements"},"492":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Your First Code Contribution","id":"492","title":"Your First Code Contribution"},"493":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Improving The Documentation","id":"493","title":"Improving The Documentation"},"494":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Styleguides","id":"494","title":"Styleguides"},"495":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Commit Messages","id":"495","title":"Commit Messages"},"496":{"body":"","breadcrumbs":"Contributor Covenant Code of Conduct » Contributor Covenant Code of Conduct","id":"496","title":"Contributor Covenant Code of Conduct"},"497":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Contributor Covenant Code of Conduct » Our Pledge","id":"497","title":"Our Pledge"},"498":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others’ private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Contributor Covenant Code of Conduct » Our Standards","id":"498","title":"Our Standards"},"499":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Responsibilities","id":"499","title":"Enforcement Responsibilities"},"5":{"body":"This chapter covers the general concepts of the blockchain, and their application in the node, and is followed by the node organisation and the user interaction with it.","breadcrumbs":"Core Ledger » General Concepts » General Concepts » General Concepts","id":"5","title":"General Concepts"},"50":{"body":"The node can be configured to work as a explorer. This consumes more resources, but makes it possible to query data otherwise not available.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Explorer mode","id":"50","title":"Explorer mode"},"500":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Contributor Covenant Code of Conduct » Scope","id":"500","title":"Scope"},"501":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at conduct@iohk.io. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement","id":"501","title":"Enforcement"},"502":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Guidelines","id":"502","title":"Enforcement Guidelines"},"503":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Contributor Covenant Code of Conduct » 1. Correction","id":"503","title":"1. Correction"},"504":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 2. Warning","id":"504","title":"2. Warning"},"505":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 3. Temporary Ban","id":"505","title":"3. Temporary Ban"},"506":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Contributor Covenant Code of Conduct » 4. Permanent Ban","id":"506","title":"4. Permanent Ban"},"507":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla’s code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations . Found a bug? Edit this page on GitHub.","breadcrumbs":"Contributor Covenant Code of Conduct » Attribution","id":"507","title":"Attribution"},"508":{"body":"This markup is available to enhance the presentation of the book. Info A beautifully styled message. Example My example is the best! Note A plain note. Data loss The following steps can lead to irrecoverable data corruption. This will take a while, go and grab a drink of water. Referencing and dereferencing The opposite of referencing by using & is dereferencing , which is accomplished with the dereference operator, *. Bug This syntax won’t work in Python 3: print \"Hello, world!\"","breadcrumbs":"Example Enhanced Markup » Example Enhanced Markup","id":"508","title":"Example Enhanced Markup"},"509":{"body":"AB Don’t Click Me Can helpAnyoneGo to https://github.com/input-output-hk/catalyst-coreHow to contribute?Reporting bugsSharing ideasAdvocating Found a bug? Edit this page on GitHub.","breadcrumbs":"Example Enhanced Markup » Example Rendered Diagrams","id":"509","title":"Example Rendered Diagrams"},"51":{"body":"There are two ways of enabling the explorer api. It can either be done by passing the --enable-explorer flag on the start arguments or by the config file: explorer: enabled: true","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Configuration","id":"51","title":"Configuration"},"510":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Suffix » Suffix","id":"510","title":"Suffix"},"52":{"body":"For configuring CORS the explorer API, this needs to be done on the REST section of the config, as documented here .","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » CORS","id":"52","title":"CORS"},"53":{"body":"A graphql interface can be used to query the explorer data. When enabled, two endpoints are available in the REST interface : /explorer/graphql /explorer/playground The first is the one that queries are made against, for example: curl \\ -X POST \\ -H \"Content-Type: application/json\" \\ --data '{'\\ '\"query\": \"{'\\ ' status {'\\ ' latestBlock {'\\ ' chainLength'\\ ' id'\\ ' previousBlock {'\\ ' id'\\ ' }'\\ ' }'\\ ' }'\\ '}\"'\\ '}' \\ http://127.0.0.1:8443/explorer/graphql While the second serves an in-browser graphql IDE that can be used to try queries interactively. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » API","id":"53","title":"API"},"54":{"body":"","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » How to start a node as a leader candidate","id":"54","title":"How to start a node as a leader candidate"},"55":{"body":"Like in the passive node case, two things are needed to connect to an existing network the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. The node configuration could be the same as that for running a passive node . There are some differences depending if you are connecting to a network running a genesis or bft consensus protocol.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Gathering data","id":"55","title":"Gathering data"},"56":{"body":"Registering a stake pool In order to be able to generate blocks in an existing genesis network, a registered stake pool is needed. Creating the secrets file Put the node id and private keys in a yaml file in the following way: Example filename: node_secret.yaml genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file Starting the Genesis node jormungandr --genesis-block-hash asdf1234... --config config.yaml --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a genesis blockchain","id":"56","title":"Connecting to a genesis blockchain"},"57":{"body":"In order to generate blocks, the node should be registered as a slot leader in the network and started in the following way. The secret file Put secret key in a yaml file, e.g. node_secret.yaml as follows: bft: signing_key: ed25519_sk1kppercsk06k03yk4qgea.... where signing_key is a private key associated to the public id of a slot leader. Starting the BFT node jormungandr --genesis-block asdf1234... --config node.config --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a BFT blockchain","id":"57","title":"Connecting to a BFT blockchain"},"58":{"body":"This chapter covers the node documentation, necessary to have a working system. It covers the network, logging and storage parameters.","breadcrumbs":"Core Ledger » Configuration » Configuration » Configuration","id":"58","title":"Configuration"},"59":{"body":"This is an common example of a Jörmungandr node configuration file typically named node-config.yaml. However your’s will vary depending on your needs. Additionally, this configuration has been tested on a specific Jörmungandr version and may change with newer versions. It’s important to keep in mind that the trusted_peers portion of this configuration will be different for each Cardano blockchain network. If you’re trying to connect this node to a specific network, you need to know: its genesis block hash its associated list of trusted peers. Example Configuration - 1: ---\nlog: output: stderr level: info format: plain http_fetch_block0_service: - https://url/jormungandr-block0/raw/master/data skip_bootstrap: false # If set to true - will skip the bootstrapping phase bootstrap_from_trusted_peers: false p2p: public_address: \"/ip4/X.X.X.X/tcp/Y\" # This should match your public IP address (X) and port number (Y) #listen: 0.0.0.0:Y topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool allow_private_addresses: false max_connections: 256 max_client_connections: 192 gossip_interval: 10s max_bootstrap_attempts: # Default is not set trusted_peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 - address: \"/ip4/3.124.132.123/tcp/3000\" id: 431214988b71f3da55a342977fea1f3d8cba460d031a839c - address: \"/ip4/18.184.181.30/tcp/3000\" id: e9cf7b29019e30d01a658abd32403db85269fe907819949d - address: \"/ip4/184.169.162.15/tcp/3000\" id: acaba9c8c4d8ca68ac8bad5fe9bd3a1ae8de13816f40697c - address: \"/ip4/13.56.87.134/tcp/3000\" id: bcfc82c9660e28d4dcb4d1c8a390350b18d04496c2ac8474 policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 rest: listen: 127.0.0.1:3100 storage: \"./storage\" explorer: enabled: false mempool: pool_max_entries: 100000 log_max_entries: 100000 leadership: logs_capacity: 1024 no_blockchain_updates_warning_interval: 15m Note: The node configuration uses the YAML format.","breadcrumbs":"Core Ledger » Configuration » Configuration » Node Configuration","id":"59","title":"Node Configuration"},"6":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain concepts","id":"6","title":"Blockchain concepts"},"60":{"body":"","breadcrumbs":"Core Ledger » Configuration » Configuration » Advanced","id":"60","title":"Advanced"},"61":{"body":"Starting the node jormungandr with the command line option --rewards-report-all will collect a thorough report of all the reward distribution. It can then be accessed via the REST endpoints /api/v0/rewards/history/1 or /api/v0/rewards/epoch/10. this is not a recommended setting as it may take memory and may trigger some latency .","breadcrumbs":"Core Ledger » Configuration » Configuration » Rewards report","id":"61","title":"Rewards report"},"62":{"body":"By default we allow a single transaction to delay a block by 50 slots. This can be changed by adjusting the block_hard_deadline setting. The following is deprecated and will be removed If you want to record the reward distributions in a directory it is possible to set the environment variable: JORMUNGANDR_REWARD_DUMP_DIRECTORY=/PATH/TO/DIR/TO/WRITE/REWARD. If an error occurs while dumping the reward, the node will panic with an appropriate error message.","breadcrumbs":"Core Ledger » Configuration » Configuration » Handling of time-consuming transactions","id":"62","title":"Handling of time-consuming transactions"},"63":{"body":"The leadership field in your node config file is not mandatory, by default it is set as follow: leadership: logs_capacity: 1024 logs_capacity: the maximum number of logs to keep in memory. Once the capacity is reached, older logs will be removed in order to leave more space for new ones [default: 1024] Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Leadership » Leadership","id":"63","title":"Leadership"},"64":{"body":"The following options are available in the log section: level: log messages minimum severity. If not configured anywhere, defaults to info. Possible values: off, critical, error, warn, info, debug, trace format: Log output format, plain or json output: Log output destination (multiple destinations are supported). Possible values are: stdout: standard output stderr: standard error journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages file: path to the log file","breadcrumbs":"Core Ledger » Configuration » Logging » Logging","id":"64","title":"Logging"},"65":{"body":"A single configurable backend is supported.","breadcrumbs":"Core Ledger » Configuration » Logging » Example","id":"65","title":"Example"},"66":{"body":"log: output: stdout level: trace format: plain","breadcrumbs":"Core Ledger » Configuration » Logging » Output to stdout","id":"66","title":"Output to stdout"},"67":{"body":"log: output: file: example.log level: info format: json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Logging » Output to a file","id":"67","title":"Output to a file"},"68":{"body":"When running an active node (BFT leader or stake pool) it is interesting to be able to make choices on how to manage the pending transactions: how long to keep them, how to prioritize them etc. The mempool field in your node config file is not mandatory, by default it is set as follow: mempool: pool_max_entries: 10000 log_max_entries: 100000 pool_max_entries: (optional, default is 10000). Set a maximum size of the mempool log_max_entries: (optional, default is 100000). Set a maximum size of fragment logs persistent_log: (optional, disabled by default) log all incoming fragments to log files, rotated on a hourly basis. The value is an object, with the dir field specifying the directory name where log files are stored.","breadcrumbs":"Core Ledger » Configuration » Mempool » Mempool","id":"68","title":"Mempool"},"69":{"body":"A persistent log is a collection of records comprised of a UNIX timestamp of when a fragment was registereed by the mempool followed by the hex-encoded fragment body. This log is a line-delimited JSON stream. Keep in mind that enabling persistent logs could result in impaired performance of the node if disk operations are slow. Consider using a reasonably fast ssd for best results. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Mempool » Persistent logs","id":"69","title":"Persistent logs"},"7":{"body":"Slots represent the basic unit of time in the blockchain, and at each slot a block could be present. Consecutive slots are grouped into epochs, which have updatable size defined by the protocol.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Time","id":"7","title":"Time"},"70":{"body":"There are 2 different network interfaces which are covered by their respective section: rest: ...\np2p: ...","breadcrumbs":"Core Ledger » Configuration » Node network » Node network","id":"70","title":"Node network"},"71":{"body":"listen: listen address tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin, note that an origin should include a scheme, for example: http://127.0.0.1:8080. max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled","breadcrumbs":"Core Ledger » Configuration » Node network » REST interface configuration","id":"71","title":"REST interface configuration"},"72":{"body":"In order to enable TLS there must be provided certificate and private key files. jcli TLS requirements Note that jormungandr itself does not have any specific requirements for TLS certificates and you may give whatever you want including self-signed certificates as long as you do not intend to use jcli. The cryptography standards used by jcli as well as by all modern browsers and many http clients place the following requirements on certificates: A certificate should adhere to X.509 v3 with appropriate key usage settings and subject alternative name. A certificate must not be self-signed. Given that, your options are to either get a certificate from a well-known CA (Let’s Encrypt will do, jcli uses Mozilla’s CA bundle for verification) or create your own local CA and provide the root certificate to jcli via the --tls-cert-path option. Creating a local CA using OpenSSL and EasyRSA EasyRSA is a set of scripts that use OpenSSL and give you an easier experience with setting up your local CA. You can download them here . Go to easy-rsa/easy-rsa3. Configure your CA. To do that, create the configuration file (cp vars.example vars); open it with the text editor of your choise (for example, vim vars); uncomment and edit fields you need to change. Each CA needs to edit these lines (find then in your vars file according to their organization structure: #set_var.EASYRSA_REQ_COUNTRY––“US” #set_var.EASYRSA_REQ_PROVINCE—“California” #set_var.EASYRSA_REQ_CITY—“San.Francisco” #set_var.EASYRSA_REQ_ORG––“Copyleft.Certificate.Co” #set_var.EASYRSA_REQ_EMAIL–“me@example.net” #set_var.EASYRSA_REQ_OU—–“My.Organizational.Unit” When your configuration is ready, run ./easyrsa init-pki and ./easyrsa build-ca nopass. You will be prompted to set the name of your CA. Run ./easyrsa gen-req server nopass to create a new private key and a certificate signing request. You will be prompted to enter the host name (localhost for local testing). Run ./easyrsa sign-req server server to sign the request. To use the generated certificate, use it and the corresponding key in your jormungandr config: rest: tls: cert_file: priv_key_file: Use the CA certificate with jcli.","breadcrumbs":"Core Ledger » Configuration » Node network » Configuring TLS","id":"72","title":"Configuring TLS"},"73":{"body":"trusted_peers: (optional) the list of nodes’ multiaddr to connect to in order to bootstrap the p2p topology (and bootstrap our local blockchain). Note that you can use a DNS name in the following format: /dns4/node.example.com/tcp/3000. Use dns6 instead of dns4 if you want the peer to connect with IPv6. public_address: multiaddr the address to listen from and accept connection from. This is the public address that will be distributed to other peers of the network that may find interest into participating to the blockchain dissemination with the node. Currently only TCP is supported. node_key_file: (optional) Path to a file containing a bech32-encoded ed25519 secret key. The keys are used to advertize the node in network gossip and to authenticate a connection to the node if the node is used as a trusted peer. Most of the users don’t need to set this value as the key will be randomly generated if the option is not present. listen: (optional) socket address (IP address and port separated by a comma), specifies the interface address and port the node will listen at to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: (optional) the different topics we are interested to hear about: messages: notify other peers this node is interested about Transactions typical setting for a non mining node: \"low\". For a stakepool: \"high\"; blocks: notify other peers this node is interested about new Blocks. typical settings for a non mining node: \"normal\". For a stakepool: \"high\". max_connections: the maximum number of P2P connections this node should maintain. If not specified, an internal limit is used by default [default: 256] max_client_connections: the maximum number of client P2P connections this node should keep open. [default: 192] policy: (optional) set the setting for the policy module quarantine_duration set the time to leave a node in quarantine before allowing it back (or not) into the fold. It is recommended to leave the default value [default: 30min]. quarantine_whitelist set a trusted list of peers that will not be quarantined in any circumstance. It should be a list of valid addresses, for example: [\"/ip4/127.0.0.1/tcp/3000\"]. By default this list is empty, [default: []]. layers: (optional) set the settings for some of the poldercast custom layers (see below) gossip_interval: (optional) interval to start gossiping with new nodes, changing the value will affect the bandwidth. The more often the node will gossip the more bandwidth the node will need. The less often the node gossips the less good the resilience to node churn. [default: 10s] network-stuck_check: (optional) If no gossip has been received in the last interval, try to connect to nodes that were previously known to this node. This helps to rejoin the protocol in case there is a network outage and the node cannot reach any other peer. [default: 5min] max_bootstrap_attempts: (optional) number of times to retry bootstrapping from trusted peers. If not set, default behavior, the bootstrap process will keep retrying indefinitely, until completed successfully. If set to 0 (zero), the node will skip bootstrap all together – even if trusted peers are defined . If the node fails to bootstrap from any of the trusted peers and the number of bootstrap retry attempts is exceeded, then the node will continue to run without completing the bootstrap process. This will allow the node to act as the first node in the p2p network (i.e. genesis node), or immediately begin gossip with the trusted peers if any are defined.","breadcrumbs":"Core Ledger » Configuration » Node network » P2P configuration","id":"73","title":"P2P configuration"},"74":{"body":"The trusted peers is a concept that is not fully implemented yet. One of the key element for now is that this is the first node any node tries to connect in order to meet new nodes. Right now, as far as we know, only one of them is needed. IOHK provides a few others for redundancy.","breadcrumbs":"Core Ledger » Configuration » Node network » The trusted peers","id":"74","title":"The trusted peers"},"75":{"body":"Jörmungandr provides multiple additional layers to the poldercast default ones: the preferred list or the bottle in the sea. Preferred list This is a special list that allows to connect multiple nodes together without relying on the auto peer discovery. All entries in the preferred list are also whitelisted automatically, so they cannot be quarantined. configuration view_max: this is the number of entries to show in the view each round the layer will randomly select up to view_max entries from the whole preferred_list.peers list of entries. [default: 20] peers: the list of peers to keep in the preferred list [default: EMPTY] Also, the preferred list will never be quarantined or blacklisted, the node will attempt to connect to (up to view_max of) these nodes every time, even if some are down, unreachable or not operated anymore. COMPATIBILITY NOTE : in near future the peer list will be only a list of addresses and the ID part will not be necessary. Example p2p: layers: preferred_list: view_max: 20 peers: - address: '/ip4/127.0.0.1/tcp/2029' id: 019abc... - ...","breadcrumbs":"Core Ledger » Configuration » Node network » Layers","id":"75","title":"Layers"},"76":{"body":"This is needed to advertise your node as a trusted peer. If not set, the node will generate a random ID, which is fine for a regular user. You can generate a public id with openssl , for example: openssl rand -hex 24","breadcrumbs":"Core Ledger » Configuration » Node network » Setting the public_id","id":"76","title":"Setting the public_id"},"77":{"body":"This is an optional value to set. The default is: messages: low\nblocks: normal These values make sense for most of the users that are not running stake pools or that are not even publicly reachable. However for a publicly reachable node, the recommended settings would be: messages: normal\nblocks: normal and for a stake pool: messages: high\nblocks: high Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Node network » topics_of_interest","id":"77","title":"topics_of_interest"},"78":{"body":"","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prometheus","id":"78","title":"Prometheus"},"79":{"body":"To use Prometheus you need Jormungandr compiled with the prometheus-metrics feature enabled.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prerequisites","id":"79","title":"Prerequisites"},"8":{"body":"Fragments are part of the blockchain data that represent all the possible events related to the blockchain health (e.g. update to the protocol), but also and mainly the general recording of information like transactions and certificates.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Fragments","id":"8","title":"Fragments"},"80":{"body":"To enable Prometheus endpoint you need to enable it in the configuration file: prometheus: enabled: true Alternatively, you can use the --prometheus-metrics flag. When enabled, the Prometheus endpoint is exposed as http(s)://:/prometheus. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Usage","id":"80","title":"Usage"},"81":{"body":"This is the node command line helper. It is mostly meant for developers and stake pool operators. It allows offline operations: generating cryptographic materials for the wallets and stake pools; creating addresses, transactions and certificates; prepare a new blockchain and it allows simple interactions with the node: query stats; send transactions and certificates; get raw blocks and UTxOs.","breadcrumbs":"Core Ledger » jcli » jcli » jcli","id":"81","title":"jcli"},"82":{"body":"Jormungandr comes with a separate CLI to create and manipulate addresses. This is useful for creating addresses from their components in the CLI, for debugging addresses and for testing.","breadcrumbs":"Core Ledger » jcli » Address » Address","id":"82","title":"Address"},"83":{"body":"To display an address and verify it is in a valid format you can utilise: $ jcli address info ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0\ndiscrimination: testing\npublic key: ed25519e_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx or for example: $ jcli address \\ info \\ ca1qsy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxz8ah8dldkhvwfghn77se8dp76uguavzyxh5cccek9epryr7mkkr8n7kgx\ndiscrimination: production\npublic key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx\ngroup key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx","breadcrumbs":"Core Ledger » jcli » Address » Display address info","id":"83","title":"Display address info"},"84":{"body":"Each command following allows to create addresses for production and testing chains. For chains, where the discrimination is testing, you need to use the --testing flag. There’s 3 types of addresses: Single address : A simple spending key. This doesn’t have any stake in the system Grouped address : A spending key attached to an account key. The stake is automatically Account address : An account key. The account is its own stake","breadcrumbs":"Core Ledger » jcli » Address » Creating an address","id":"84","title":"Creating an address"},"85":{"body":"You can create a single address (non-staked) using the spending public key for this address utilising the following command: $ jcli address \\ single ed25519e_pk1jnlhwdgzv3c9frknyv7twsv82su26qm30yfpdmvkzyjsdgw80mfqduaean\nca1qw207ae4qfj8q4yw6v3ned6psa2r3tgrw9u3y9hdjcgj2p4pcaldyukyka8 To add the staking information and make a group address, simply add the account public key as a second parameter of the command: $ jcli address \\ single \\ ed25519_pk1fxvudq6j7mfxvgk986t5f3f258sdtw89v4n3kr0fm6mpe4apxl4q0vhp3k \\ ed25519_pk1as03wxmy2426ceh8nurplvjmauwpwlcz7ycwj7xtl9gmx9u5gkqscc5ylx\nca1q3yen35r2tmdye3zc5lfw3x992s7p4dcu4jkwxcda80tv8xh5ym74mqlzudkg42443nw08cxr7e9hmcuzals9ufsa9uvh723kvteg3vpvrcxcq","breadcrumbs":"Core Ledger » jcli » Address » Address for UTxO","id":"85","title":"Address for UTxO"},"86":{"body":"To create an account address you need the account public key and run: $ jcli address \\ account ed25519_pk1c4yq3hflulynn8fef0hdq92579n3c49qxljasrl9dnuvcksk84gs9sqvc2\nca1qhz5szxa8lnujwva8997a5q42nckw8z55qm7tkq0u4k03nz6zc74ze780qe","breadcrumbs":"Core Ledger » jcli » Address » Address for Account","id":"86","title":"Address for Account"},"87":{"body":"You can decide to change the address prefix, allowing you to provide more enriched data to the user. However, this prefix is not forwarded to the node, it is only for UI/UX. $ jcli address \\ account \\ --prefix=address_ \\ ed25519_pk1yx6q8rsndawfx8hjzwntfs2h2c37v5g6edv67hmcxvrmxfjdz9wqeejchg\naddress_1q5smgquwzdh4eyc77gf6ddxp2atz8ej3rt94nt6l0qes0vexf5g4cw68kdx Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Address » changing the address prefix","id":"87","title":"changing the address prefix"},"88":{"body":"Tooling for offline transaction creation","breadcrumbs":"Core Ledger » jcli » Certificate » Certificate","id":"88","title":"Certificate"},"89":{"body":"Builds a stake pool registration certificate. jcli certificate new stake-pool-registration \\ --vrf-key \\ --kes-key \\ --start-validity \\ --management-threshold \\ --owner \\ [--operator ] \\ [] Where: --operator - optional , public key of the operator(s) of the pool. output-file - optional , write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool registration certificate","id":"89","title":"Building stake pool registration certificate"},"9":{"body":"Blocks represent the spine of the blockchain, safely and securely linking blocks in a chain, whilst grouping valid fragments together. Blocks are composed of 2 parts: The header The content The header link the content with the blocks securely together, while the content is effectively a sequence of fragments.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blocks","id":"9","title":"Blocks"},"90":{"body":"It is possible to retire a stake pool from the blockchain. By doing so the stake delegated to the stake pool will become dangling and will need to be re-delegated. Remember though that the action won’t be applied until the next following epoch. I.e. the certificate will take a whole epoch before being applied, this should leave time for stakers to redistribute their stake to other pools before having their stake becoming dangling. It might be valuable for a stake pool operator to keep the stake pool running until the stake pool retirement certificate is fully applied in order to not miss any potential rewards. example: jcli certificate new stake-pool-retirement \\ --pool-id \\ --retirement-time \\ [] where: output-file - optional , write the output to the given file or print it to the standard output if not defined. --retirement-time - is the number of seconds since the start in order to make the stake pool retire. 0 means as soon as possible. --pool-id - hex-encoded stake pool ID. Can be retrieved using jcli certificate get-stake-pool-id command. See here for more details.","breadcrumbs":"Core Ledger » jcli » Certificate » Retiring a stake pool","id":"90","title":"Retiring a stake pool"},"91":{"body":"Builds a stake pool delegation certificate. jcli certificate new stake-delegation [--output ] Where: -o, --output - optional , write the output to the given file or print it to the standard output if not defined - the public key used in the stake key registration ... - hex-encoded stake pool IDs and their numeric weights in format “pool_id:weight” . If weight is not provided, it defaults to 1 .","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool delegation certificate","id":"91","title":"Building stake pool delegation certificate"},"92":{"body":"Builds an update proposal certificate. jcli certificate new update-proposal \\ \\ \\ [] Where: - the proposer ID, public key of the one who will sign this certificate - optional , the file path to the config file defining the config param changes. If omitted it will be read from the standard input. output-file - optional , write the output to the given file or print it to the standard output if not defined For example your config file may look like: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch\n- Block0Date: 17 # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' otherwise use 'test'.\n- Discrimination: test # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis\n- ConsensusVersion: bft # Number of slots in each epoch.\n- SlotsPerEpoch: 42 # The slot duration, in seconds, is the time between the creation # of 2 blocks\n- SlotDuration: 79 # Epoch stability depth\n- EpochStabilityDepth: 12 # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1]\n- ConsensusGenesisPraosActiveSlotsCoeff: \"0.004\" # This is the size, in bytes, of all the contents of the block (excluding the # block header).\n- BlockContentMaxSize: 96 # Add a new bft leader\n- AddBftLeader: ed25519_pk1g53asm6l4gcwk2pm5ylr092umaur5yes47rqv7ng5yl525x8g8mq5nk7x7 # Remove a bft leader\n- RemoveBftLeader: ed25519_pk1a3sjcg6gt4d05k5u6uqyzmsap8cjw37ul9cgztz8m697lvkz26uqg49nm3 # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate]\n- LinearFee: # this is the minimum value to pay for every transaction constant: 57 # the additional fee to pay for every inputs and outputs coefficient: 14 # the additional fee to pay if the transaction embeds a certificate certificate: 95 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Proposal expiration in epochs\n- ProposalExpiration: 68 # The speed to update the KES Key in seconds\n- KesUpdateSpeed: 120 # Increase the treasury amount\n- TreasuryAdd: 10000 # Set the total reward supply available for monetary creation\n- RewardPot: 100000000000000 # Set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document\n- TreasuryParams: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # it is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: max_limit: 10000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate)\n- RewardParams: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 2 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: 3/68 # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 89 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 20 # Fees for different types of certificates, to override the one # given in `certificate` just above.\n- PerCertificateFees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Set where to send the fees generated by transactions activity. # # It is possible to send all the generated fees to the \"treasury\"\n- FeesInTreasury: rewards - RewardLimitNone # Limit the epoch total reward drawing limit to a portion of the total # active stake of the system. # # for example, if set to 10%, the reward drawn will be bounded by the # 10% of the total active stake.\n- RewardLimitByAbsoluteStake: 22/72 # Settings to incentivize the numbers of stake pool to be registered # on the blockchain. # # These settings does not prevent more stake pool to be added. For example # if there is already 1000 stake pools, someone can still register a new # stake pool and affect the rewards of everyone else too. # # if the threshold is reached, the pool doesn't really have incentive to # create more blocks than 1 / set-value-of-pools % of stake.\n- PoolRewardParticipationCapping: min: 8 max: 52 # Add a new committee id\n- AddCommitteeId: 8103973beaa56f4e9440004ee8e8f8359ea18499d4199c1b018c072e7f503ea0 # Remove a committee id\n- RemoveCommitteeId: 6375dcdd714e69c197e99c32486ec28f166a50da7a1e3694807cd8a76f1c8175 - PerVoteCertificateFees: certificate_vote_plan: 52 certificate_vote_cast: 57 # The transaction max expiry epochs\n- TransactionMaxExpiryEpochs: 91","breadcrumbs":"Core Ledger » jcli » Certificate » Building update proposal certificate","id":"92","title":"Building update proposal certificate"},"93":{"body":"Builds a vote cast certificate.","breadcrumbs":"Core Ledger » jcli » Certificate » Building vote cast certificate","id":"93","title":"Building vote cast certificate"},"94":{"body":"jcli certificate new update-cast public \\ --choice \\ --proposal-index \\ --vote-plan-id \\ --output Where: - the number of choice within the proposal you vote for - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Public vote cast","id":"94","title":"Public vote cast"},"95":{"body":"jcli certificate new update-cast private \\ --choice \\ --options-size \\ --proposal-index \\ --vote-plan-id \\ --key-path --output Where: - the number of choice within the proposal you vote for - size of voting options - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional key to encrypt the vote with, if not provided read secret key from the stdit - optional write the output to the given file or print it to the standard output if not defined Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Certificate » Private vote cast","id":"95","title":"Private vote cast"},"96":{"body":"Tooling for working with a genesis file","breadcrumbs":"Core Ledger » jcli » Genesis » Genesis","id":"96","title":"Genesis"},"97":{"body":"jcli genesis [subcommand]","breadcrumbs":"Core Ledger » jcli » Genesis » Usage","id":"97","title":"Usage"},"98":{"body":"decode: Print the YAML file corresponding to an encoded genesis block. encode: Create the genesis block of the blockchain from a given yaml file. hash: Print the block hash of the genesis init: Create a default Genesis file with appropriate documentation to help creating the YAML file help","breadcrumbs":"Core Ledger » jcli » Genesis » Subcommands","id":"98","title":"Subcommands"},"99":{"body":"","breadcrumbs":"Core Ledger » jcli » Genesis » Examples","id":"99","title":"Examples"}},"length":511,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.6457513110645907}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.0},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.1622776601683795},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.1622776601683795},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":16,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"11":{"tf":1.0},"173":{"tf":1.4142135623730951},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":80,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.4142135623730951},"318":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.7320508075688772},"341":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.23606797749979},"278":{"tf":1.0},"303":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":12,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.0},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":82,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"458":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":2.0},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":3.605551275463989},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.242640687119285},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"248":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"320":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"331":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":2.0},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"289":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":1.7320508075688772},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.0},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":44,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.0},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"340":{"tf":2.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"361":{"tf":1.0},"392":{"tf":1.7320508075688772},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.7320508075688772},"339":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.0},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":43,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":53,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"40":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.0},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":73,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"367":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.7320508075688772},"397":{"tf":2.0},"399":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.449489742783178},"485":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"473":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":18,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.4641016151377544}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"496":{"tf":1.0},"507":{"tf":1.0}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":2.0},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":13,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.0},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"432":{"tf":2.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.7320508075688772},"444":{"tf":2.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":73,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.8284271247461903},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":3.3166247903554},"377":{"tf":3.1622776601683795},"378":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.7320508075688772},"439":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.0},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":26,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.0},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.6457513110645907},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"432":{"tf":1.0}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.0},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"485":{"tf":1.0},"491":{"tf":2.8284271247461903},"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.4641016151377544},"126":{"tf":2.23606797749979},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.4641016151377544},"476":{"tf":3.3166247903554},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"47":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"480":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.0},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":2.0},"276":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":2.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":2.23606797749979},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":53,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.7320508075688772},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":2.8284271247461903},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"189":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.449489742783178},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":13,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":1.4142135623730951},"3":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.4142135623730951},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"484":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.4142135623730951},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.7320508075688772},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.23606797749979},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":25,"docs":{"196":{"tf":1.0},"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.0}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.0},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"191":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"196":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":3.3166247903554},"151":{"tf":3.605551275463989},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":61,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.099504938362077},"450":{"tf":34.55430508634199},"451":{"tf":2.0},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.449489742783178},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"11":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"119":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":11,"docs":{"174":{"tf":1.4142135623730951},"228":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"3":{"tf":1.0},"422":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":16,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":16,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"299":{"tf":4.0},"300":{"tf":1.4142135623730951},"301":{"tf":2.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":25,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"232":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":1.7320508075688772},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.0},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":3.7416573867739413},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"407":{"tf":1.0},"462":{"tf":1.7320508075688772},"50":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":72,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":125,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.7416573867739413},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":2.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.23606797749979},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":2.6457513110645907},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":5.291502622129181},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"16":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"36":{"tf":1.0},"446":{"tf":1.0},"458":{"tf":1.4142135623730951},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.4142135623730951},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"422":{"tf":1.0},"426":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":3.3166247903554},"191":{"tf":2.23606797749979},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":3.1622776601683795},"124":{"tf":3.1622776601683795},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.605551275463989},"91":{"tf":1.7320508075688772},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.23606797749979},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"118":{"tf":1.4142135623730951},"153":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":51,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.6457513110645907},"436":{"tf":3.0},"437":{"tf":3.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":2.8284271247461903},"501":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.358898943540674},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":76,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"153":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.1622776601683795},"126":{"tf":2.23606797749979},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":13,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":2.6457513110645907},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.23606797749979},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":66,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"334":{"tf":2.449489742783178},"335":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":1.7320508075688772},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":6.244997998398398},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"479":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.0},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":36,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.6457513110645907},"346":{"tf":1.0},"347":{"tf":2.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":1,"docs":{"391":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":19,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.0},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":74,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":4.242640687119285},"124":{"tf":2.449489742783178},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.449489742783178},"157":{"tf":2.0},"160":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":3.605551275463989},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":2.6457513110645907},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"321":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"332":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":2.449489742783178},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"443":{"tf":2.0},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":3.605551275463989},"91":{"tf":2.23606797749979},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":79,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":2.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":1.7320508075688772},"410":{"tf":1.0},"412":{"tf":1.0},"439":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.0},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":1.4142135623730951},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.1622776601683795}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.242640687119285},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":69,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":2.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.6457513110645907},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":2.0},"289":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":2.6457513110645907},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"310":{"tf":2.0},"311":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":4.0},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":66,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":3.872983346207417},"130":{"tf":4.69041575982343},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"200":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":1.7320508075688772},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"216":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"418":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":36,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.0},"346":{"tf":1.7320508075688772},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"379":{"tf":1.0},"386":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":34,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"391":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":19,"docs":{"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":58,"docs":{"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"147":{"tf":3.0},"148":{"tf":2.0},"149":{"tf":4.69041575982343},"151":{"tf":4.795831523312719},"152":{"tf":3.872983346207417},"174":{"tf":1.0},"191":{"tf":3.3166247903554},"196":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":3.605551275463989},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.8284271247461903},"95":{"tf":3.1622776601683795}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.449489742783178},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"477":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.0},"142":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":22,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"287":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.23606797749979},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.8284271247461903}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.23606797749979},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.3166247903554},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.0},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.3166247903554},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":3.0},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":2.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":18,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.449489742783178},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.449489742783178},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":43,"docs":{"11":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":95,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":4.123105625617661},"449":{"tf":6.6332495807108},"450":{"tf":22.956480566497994},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":4.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":2.0},"478":{"tf":2.0},"479":{"tf":2.0},"480":{"tf":2.0},"481":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":2.0},"49":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.449489742783178},"278":{"tf":1.0},"303":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.23606797749979},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":14,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":2.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":2.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":20,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":101,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.6457513110645907},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"458":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":3.7416573867739413},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.7320508075688772},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":10,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.358898943540674},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":2.0},"239":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":2.0},"265":{"tf":2.0},"268":{"tf":1.0},"271":{"tf":2.0},"290":{"tf":2.0},"293":{"tf":1.0},"297":{"tf":2.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":2.0},"320":{"tf":2.0},"325":{"tf":2.0},"331":{"tf":2.0},"336":{"tf":2.0},"343":{"tf":2.0},"348":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"362":{"tf":2.23606797749979},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":146,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":2.0},"307":{"tf":2.0},"413":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.23606797749979},"167":{"tf":2.23606797749979},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"91":{"tf":2.23606797749979},"92":{"tf":4.58257569495584},"93":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.7320508075688772},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":2.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":47,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.7320508075688772},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.7320508075688772},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.23606797749979},"318":{"tf":1.0},"319":{"tf":2.23606797749979},"320":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"330":{"tf":2.23606797749979},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"342":{"tf":2.23606797749979},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"361":{"tf":1.0},"392":{"tf":2.0},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":2.0},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.7320508075688772},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":48,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":2.0},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"301":{"tf":2.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.0},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.7320508075688772},"394":{"tf":1.0},"40":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":2.0},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.23606797749979},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"7":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.7320508075688772},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":115,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":2.0},"294":{"tf":2.0},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":2.0},"326":{"tf":1.0},"334":{"tf":2.0},"337":{"tf":1.0},"346":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.7320508075688772},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.0},"397":{"tf":2.449489742783178},"398":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":2.449489742783178},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.7320508075688772},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.8284271247461903},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.7320508075688772},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"473":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.7320508075688772},"71":{"tf":2.0}},"e":{"df":318,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"45":{"tf":1.0},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":12,"docs":{"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":15,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":2.449489742783178},"431":{"tf":2.0},"432":{"tf":2.449489742783178},"433":{"tf":2.449489742783178},"434":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":2.6457513110645907},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":86,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":3.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":3.4641016151377544},"377":{"tf":3.3166247903554},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"434":{"tf":2.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.7320508075688772},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":27,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.1622776601683795},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.8284271247461903},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.4142135623730951},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":14,"docs":{"216":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"432":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.7320508075688772},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.23606797749979},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"485":{"tf":1.0},"491":{"tf":3.0},"508":{"tf":2.0},"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":2.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.605551275463989},"126":{"tf":2.449489742783178},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":2.0},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.605551275463989},"476":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"376":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":2.23606797749979},"509":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.7320508075688772},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"393":{"tf":2.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"480":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.1622776601683795},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":2.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.4142135623730951},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":2.0}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":3.0},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":42,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"391":{"tf":1.0},"417":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"391":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":97,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":3.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":45,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":2.0},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.605551275463989},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":2.0},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":144,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.7320508075688772},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":2.0},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"232":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":2.0},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.449489742783178},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":2.0},"126":{"tf":2.449489742783178},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"288":{"tf":2.0},"289":{"tf":2.23606797749979},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.8284271247461903},"293":{"tf":1.7320508075688772},"294":{"tf":2.0},"295":{"tf":2.0},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.23606797749979},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"247":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"336":{"tf":1.0},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":33,"docs":{"196":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"287":{"tf":1.0},"302":{"tf":2.449489742783178},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"417":{"tf":1.0},"424":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.1622776601683795}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}},"df":15,"docs":{"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":16,"docs":{"196":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":2.449489742783178},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.7320508075688772},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":107,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":3.4641016151377544},"150":{"tf":1.0},"151":{"tf":3.7416573867739413},"152":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":97,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.14889156509222},"450":{"tf":34.55430508634199},"451":{"tf":2.23606797749979},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":29,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":2.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.8284271247461903},"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":2.23606797749979},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":2.0},"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.23606797749979}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":288,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.449489742783178},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.4142135623730951},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":20,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.4641016151377544},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":4.123105625617661},"300":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":26,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"120":{"tf":2.0},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"232":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":2.0},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":2.0},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"508":{"tf":2.0},"509":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":2.0},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"232":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":18,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":2.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":3.872983346207417},"392":{"tf":1.4142135623730951},"393":{"tf":2.6457513110645907},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":2.0},"399":{"tf":2.449489742783178},"400":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.7320508075688772}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":88,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":2.0},"141":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.23606797749979},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.872983346207417},"11":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"374":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.6457513110645907},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":3.0},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":3.3166247903554},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":5.385164807134504},"74":{"tf":2.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":39,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":2.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"36":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":2.0},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.7320508075688772},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.7320508075688772},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"422":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":26,"docs":{"128":{"tf":2.0},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":3.4641016151377544},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":31,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":2.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":2.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.6457513110645907},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":50,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":3.1622776601683795},"124":{"tf":3.3166247903554},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.6457513110645907},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.7416573867739413},"91":{"tf":2.0},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":2.0},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.449489742783178},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":22,"docs":{"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"118":{"tf":1.7320508075688772},"153":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":56,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.449489742783178},"320":{"tf":1.7320508075688772},"321":{"tf":2.0},"322":{"tf":2.6457513110645907},"323":{"tf":2.449489742783178},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.449489742783178},"331":{"tf":2.0},"332":{"tf":2.0},"333":{"tf":2.6457513110645907},"334":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.8284271247461903},"435":{"tf":1.0},"436":{"tf":3.3166247903554},"437":{"tf":3.3166247903554},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":3.0},"501":{"tf":1.4142135623730951},"61":{"tf":2.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.358898943540674},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.23606797749979},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":77,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":3.0},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":2.6457513110645907},"172":{"tf":1.7320508075688772},"90":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":35,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":3.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.4142135623730951},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"45":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":79,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":2.0},"334":{"tf":2.6457513110645907},"335":{"tf":2.449489742783178},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":2.8284271247461903},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":2.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":6.244997998398398},"456":{"tf":2.0},"457":{"tf":2.0},"47":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":2.0},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":2.0},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":42,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":2.8284271247461903},"346":{"tf":1.4142135623730951},"347":{"tf":2.6457513110645907},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":2.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.23606797749979},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":1,"docs":{"391":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":42,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.1622776601683795},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":81,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":4.358898943540674},"124":{"tf":2.6457513110645907},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.8284271247461903},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.8284271247461903},"157":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":2.8284271247461903},"168":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"170":{"tf":2.449489742783178},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.449489742783178},"188":{"tf":3.7416573867739413},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":3.0},"318":{"tf":1.0},"32":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"33":{"tf":2.8284271247461903},"332":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"35":{"tf":2.8284271247461903},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.0},"443":{"tf":2.449489742783178},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.7416573867739413},"91":{"tf":2.449489742783178},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":87,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":2.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":2.0},"123":{"tf":2.0},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":2.0},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":21,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":2.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.358898943540674},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.8284271247461903},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":196,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"237":{"tf":2.449489742783178},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.8284271247461903},"245":{"tf":3.1622776601683795},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.449489742783178},"249":{"tf":2.6457513110645907},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":2.449489742783178},"254":{"tf":2.449489742783178},"255":{"tf":2.449489742783178},"256":{"tf":2.449489742783178},"257":{"tf":2.449489742783178},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":3.0},"303":{"tf":3.3166247903554},"304":{"tf":1.7320508075688772},"305":{"tf":2.23606797749979},"306":{"tf":2.6457513110645907},"307":{"tf":2.8284271247461903},"308":{"tf":2.6457513110645907},"309":{"tf":2.8284271247461903},"310":{"tf":2.8284271247461903},"311":{"tf":2.8284271247461903},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":2.6457513110645907},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"415":{"tf":2.23606797749979},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":4.123105625617661},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"258":{"tf":1.0},"309":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"232":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.6457513110645907},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":2.0},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":32,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":79,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":4.123105625617661},"130":{"tf":4.898979485566356},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":2.6457513110645907},"140":{"tf":1.7320508075688772},"141":{"tf":3.4641016151377544},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"144":{"tf":2.8284271247461903},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":2.0},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"216":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":2.0},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.449489742783178},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":27,"docs":{"418":{"tf":2.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.23606797749979},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":144,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.449489742783178},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":34,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"391":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":2.23606797749979},"357":{"tf":1.7320508075688772},"358":{"tf":2.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":2.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":48,"docs":{"361":{"tf":2.23606797749979},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":73,"docs":{"127":{"tf":2.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"147":{"tf":3.1622776601683795},"148":{"tf":2.449489742783178},"149":{"tf":4.898979485566356},"150":{"tf":1.0},"151":{"tf":5.0},"152":{"tf":4.123105625617661},"174":{"tf":1.0},"191":{"tf":3.872983346207417},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.4142135623730951},"373":{"tf":3.7416573867739413},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":3.0},"95":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.8284271247461903},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":9,"docs":{"459":{"tf":1.0},"474":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.1622776601683795},"142":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":35,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"287":{"tf":1.0},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":2.23606797749979},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"title":{"root":{"0":{"df":2,"docs":{"181":{"tf":1.0},"280":{"tf":1.0}}},"1":{"df":1,"docs":{"503":{"tf":1.0}}},"2":{"df":1,"docs":{"504":{"tf":1.0}}},"3":{"df":1,"docs":{"505":{"tf":1.0}}},"4":{"df":1,"docs":{"506":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"32":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"d":{"a":{"df":3,"docs":{"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}},"d":{"df":4,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"391":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"173":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":25,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"467":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"286":{"tf":1.0}}},"o":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"283":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"181":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"38":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"490":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"425":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"287":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":10,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"139":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"144":{"tf":1.0},"403":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"392":{"tf":1.0},"456":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.0},"316":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"471":{"tf":1.0},"474":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"495":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"217":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"486":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"241":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"385":{"tf":1.0},"485":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"496":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":4,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"484":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"462":{"tf":1.0},"467":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"39":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"376":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"213":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"448":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"35":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"432":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"396":{"tf":1.0},"446":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"399":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"499":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"491":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"403":{"tf":1.0},"404":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"475":{"tf":1.0},"476":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"393":{"tf":1.0},"480":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"381":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0}}}}}}},"d":{"df":3,"docs":{"177":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"366":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"231":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"474":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"287":{"tf":1.0},"459":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"216":{"tf":1.0},"464":{"tf":1.0},"502":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"432":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"df":2,"docs":{"380":{"tf":1.0},"428":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"113":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"493":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"176":{"tf":1.0},"186":{"tf":1.0},"368":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"424":{"tf":1.0},"450":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"407":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":1,"docs":{"191":{"tf":1.0}},"f":{"a":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"474":{"tf":1.0}}}}},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"235":{"tf":1.0},"251":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":6,"docs":{"205":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"458":{"tf":1.0}}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"y":{"df":4,"docs":{"102":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"405":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"n":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"453":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"388":{"tf":1.0},"393":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"351":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"407":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":3,"docs":{"226":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"311":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"462":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"377":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":25,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"166":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"465":{"tf":1.0},"470":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"16":{"tf":1.0},"284":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"446":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"164":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"253":{"tf":1.0},"256":{"tf":1.0},"415":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"372":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":11,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"128":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"151":{"tf":1.0},"29":{"tf":1.0},"467":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"410":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"160":{"tf":1.0}},"r":{"df":10,"docs":{"187":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"490":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"105":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"391":{"tf":1.0},"428":{"tf":1.0},"49":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":18,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"500":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"143":{"tf":1.0},"402":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"431":{"tf":1.0},"457":{"tf":1.0},"474":{"tf":1.0}}}},"i":{"c":{"df":14,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"378":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.0},"454":{"tf":1.0},"76":{"tf":1.0}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"125":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"134":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":23,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"123":{"tf":1.0}},"e":{"df":3,"docs":{"114":{"tf":1.0},"279":{"tf":1.0},"444":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"354":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}}}},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"459":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"485":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"x":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":36,"docs":{"190":{"tf":1.0},"211":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"450":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"309":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"373":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"444":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"468":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"418":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"338":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":5,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.0}}}}}},"v":{"0":{"df":4,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}}},"1":{"df":2,"docs":{"478":{"tf":1.0},"483":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.4142135623730951},"283":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"488":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"504":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"474":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["00_prologue.html#prologue","01_intro.html#introduction","01_intro.html#what-is-catalyst-core","02_core_ledger/index.html#core-ledger","02_core_ledger/index.html#mythology","02_core_ledger/01_concepts/index.html#general-concepts","02_core_ledger/01_concepts/blockchain.html#blockchain-concepts","02_core_ledger/01_concepts/blockchain.html#time","02_core_ledger/01_concepts/blockchain.html#fragments","02_core_ledger/01_concepts/blockchain.html#blocks","02_core_ledger/01_concepts/blockchain.html#blockchain","02_core_ledger/01_concepts/blockchain.html#consensus","02_core_ledger/01_concepts/blockchain.html#leadership","02_core_ledger/01_concepts/blockchain.html#leader","02_core_ledger/01_concepts/blockchain.html#transaction","02_core_ledger/01_concepts/blockchain.html#accounting","02_core_ledger/01_concepts/network.html#network-overview","02_core_ledger/01_concepts/network.html#the-protocol","02_core_ledger/01_concepts/network.html#type-of-queries","02_core_ledger/01_concepts/network.html#peer-to-peer","02_core_ledger/01_concepts/network.html#multilayered-topology","02_core_ledger/01_concepts/network.html#gossiping","02_core_ledger/01_concepts/network.html#subscription-mechanism","02_core_ledger/01_concepts/network.html#security-and-countermeasures","02_core_ledger/01_concepts/network.html#policy","02_core_ledger/01_concepts/node.html#node-organization","02_core_ledger/01_concepts/node.html#secure-enclave","02_core_ledger/01_concepts/node.html#network","02_core_ledger/01_concepts/node.html#intercommunication-api-grpc","02_core_ledger/01_concepts/node.html#public-api-rest","02_core_ledger/01_concepts/node.html#control-api-rest","02_core_ledger/01_concepts/stake.html#stake","02_core_ledger/01_concepts/stake.html#stake-in-the-account-model","02_core_ledger/01_concepts/stake.html#stake-in-the-utxo-model","02_core_ledger/01_concepts/stake.html#stake-pool","02_core_ledger/01_concepts/stake.html#stake-delegation","02_core_ledger/02_quickstart/index.html#quickstart","02_core_ledger/02_quickstart/index.html#as-a-passive-node-in-an-existing-network","02_core_ledger/02_quickstart/index.html#as-a-node-generating-blocks-in-an-existing-network","02_core_ledger/02_quickstart/index.html#creating-your-own-network","02_core_ledger/02_quickstart/01_command_line.html#command-line-tools","02_core_ledger/02_quickstart/01_command_line.html#installation","02_core_ledger/02_quickstart/01_command_line.html#from-a-release","02_core_ledger/02_quickstart/01_command_line.html#from-source","02_core_ledger/02_quickstart/01_command_line.html#help-and-auto-completion","02_core_ledger/02_quickstart/02_passive_node.html#starting-a-passive-node","02_core_ledger/02_quickstart/02_passive_node.html#the-node-configuration","02_core_ledger/02_quickstart/02_passive_node.html#note","02_core_ledger/02_quickstart/02_passive_node.html#starting-the-node","02_core_ledger/02_quickstart/03_rest_api.html#rest-api","02_core_ledger/02_quickstart/04_explorer.html#explorer-mode","02_core_ledger/02_quickstart/04_explorer.html#configuration","02_core_ledger/02_quickstart/04_explorer.html#cors","02_core_ledger/02_quickstart/04_explorer.html#api","02_core_ledger/02_quickstart/05_leader_candidate.html#how-to-start-a-node-as-a-leader-candidate","02_core_ledger/02_quickstart/05_leader_candidate.html#gathering-data","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-genesis-blockchain","02_core_ledger/02_quickstart/05_leader_candidate.html#connecting-to-a-bft-blockchain","02_core_ledger/03_configuration/index.html#configuration","02_core_ledger/03_configuration/index.html#node-configuration","02_core_ledger/03_configuration/index.html#advanced","02_core_ledger/03_configuration/index.html#rewards-report","02_core_ledger/03_configuration/index.html#handling-of-time-consuming-transactions","02_core_ledger/03_configuration/leadership.html#leadership","02_core_ledger/03_configuration/logging.html#logging","02_core_ledger/03_configuration/logging.html#example","02_core_ledger/03_configuration/logging.html#output-to-stdout","02_core_ledger/03_configuration/logging.html#output-to-a-file","02_core_ledger/03_configuration/mempool.html#mempool","02_core_ledger/03_configuration/mempool.html#persistent-logs","02_core_ledger/03_configuration/network.html#node-network","02_core_ledger/03_configuration/network.html#rest-interface-configuration","02_core_ledger/03_configuration/network.html#configuring-tls","02_core_ledger/03_configuration/network.html#p2p-configuration","02_core_ledger/03_configuration/network.html#the-trusted-peers","02_core_ledger/03_configuration/network.html#layers","02_core_ledger/03_configuration/network.html#setting-the-public_id","02_core_ledger/03_configuration/network.html#topics_of_interest","02_core_ledger/03_configuration/prometheus.html#prometheus","02_core_ledger/03_configuration/prometheus.html#prerequisites","02_core_ledger/03_configuration/prometheus.html#usage","02_core_ledger/04_jcli/index.html#jcli","02_core_ledger/04_jcli/address.html#address","02_core_ledger/04_jcli/address.html#display-address-info","02_core_ledger/04_jcli/address.html#creating-an-address","02_core_ledger/04_jcli/address.html#address-for-utxo","02_core_ledger/04_jcli/address.html#address-for-account","02_core_ledger/04_jcli/address.html#changing-the-address-prefix","02_core_ledger/04_jcli/certificate.html#certificate","02_core_ledger/04_jcli/certificate.html#building-stake-pool-registration-certificate","02_core_ledger/04_jcli/certificate.html#retiring-a-stake-pool","02_core_ledger/04_jcli/certificate.html#building-stake-pool-delegation-certificate","02_core_ledger/04_jcli/certificate.html#building-update-proposal-certificate","02_core_ledger/04_jcli/certificate.html#building-vote-cast-certificate","02_core_ledger/04_jcli/certificate.html#public-vote-cast","02_core_ledger/04_jcli/certificate.html#private-vote-cast","02_core_ledger/04_jcli/genesis.html#genesis","02_core_ledger/04_jcli/genesis.html#usage","02_core_ledger/04_jcli/genesis.html#subcommands","02_core_ledger/04_jcli/genesis.html#examples","02_core_ledger/04_jcli/genesis.html#encode-a-genesis-file","02_core_ledger/04_jcli/genesis.html#get-the-hash-of-an-encoded-genesis-file","02_core_ledger/04_jcli/key.html#cryptographic-keys","02_core_ledger/04_jcli/key.html#signing-data","02_core_ledger/04_jcli/key.html#verifying-signed-data","02_core_ledger/04_jcli/rest.html#rest","02_core_ledger/04_jcli/rest.html#conventions","02_core_ledger/04_jcli/rest.html#node-stats","02_core_ledger/04_jcli/rest.html#get-utxo","02_core_ledger/04_jcli/rest.html#post-transaction","02_core_ledger/04_jcli/rest.html#get-message-log","02_core_ledger/04_jcli/rest.html#blockchain-tip","02_core_ledger/04_jcli/rest.html#get-block","02_core_ledger/04_jcli/rest.html#get-next-block-id","02_core_ledger/04_jcli/rest.html#get-account-state","02_core_ledger/04_jcli/rest.html#node-settings","02_core_ledger/04_jcli/rest.html#node-shutdown","02_core_ledger/04_jcli/rest.html#get-leaders","02_core_ledger/04_jcli/rest.html#register-leader","02_core_ledger/04_jcli/rest.html#delete-leader","02_core_ledger/04_jcli/rest.html#get-leadership-logs","02_core_ledger/04_jcli/rest.html#get-stake-pools","02_core_ledger/04_jcli/rest.html#get-stake-distribution","02_core_ledger/04_jcli/rest.html#network-stats","02_core_ledger/04_jcli/rest.html#get-stake-pool-details","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-a-specific-epoch","02_core_ledger/04_jcli/rest.html#get-rewards-history-for-some-epochs","02_core_ledger/04_jcli/rest.html#get-voting-committee-members","02_core_ledger/04_jcli/rest.html#get-active-voting-plans-and-proposals","02_core_ledger/04_jcli/transaction.html#transaction","02_core_ledger/04_jcli/transaction.html#transaction-info","02_core_ledger/04_jcli/transaction.html#examples","02_core_ledger/04_jcli/transaction.html#input-utxo","02_core_ledger/04_jcli/transaction.html#destination-address","02_core_ledger/04_jcli/transaction.html#create-a-staging-area","02_core_ledger/04_jcli/transaction.html#add-input","02_core_ledger/04_jcli/transaction.html#example---utxo-address-as-input","02_core_ledger/04_jcli/transaction.html#example---account-address-as-input","02_core_ledger/04_jcli/transaction.html#add-output","02_core_ledger/04_jcli/transaction.html#add-fee-and-change-address","02_core_ledger/04_jcli/transaction.html#sign-the-transaction","02_core_ledger/04_jcli/transaction.html#make-witness","02_core_ledger/04_jcli/transaction.html#add-witness","02_core_ledger/04_jcli/transaction.html#send-the-transaction","02_core_ledger/04_jcli/transaction.html#checking-if-the-transaction-was-accepted","02_core_ledger/04_jcli/vote.html#voting","02_core_ledger/04_jcli/vote.html#creating-committee-keys","02_core_ledger/04_jcli/vote.html#private","02_core_ledger/04_jcli/vote.html#creating-a-vote-plan","02_core_ledger/04_jcli/vote.html#casting-votes","02_core_ledger/04_jcli/vote.html#tallying","02_core_ledger/04_jcli/vote.html#public-vote-plan","02_core_ledger/04_jcli/vote.html#private-vote-plan","02_core_ledger/05_stake_pool/index.html#staking-with-jörmungandr","02_core_ledger/05_stake_pool/delegating_stake.html#delegating-your-stake","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-create-the-delegation-certificate","02_core_ledger/05_stake_pool/delegating_stake.html#for-own-account","02_core_ledger/05_stake_pool/delegating_stake.html#for-any-account","02_core_ledger/05_stake_pool/delegating_stake.html#submitting-to-a-node","02_core_ledger/05_stake_pool/delegating_stake.html#how-to-sign-your-delegation-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#registering-a-stake-pool","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-primitives","02_core_ledger/05_stake_pool/registering_stake_pool.html#vrf-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#kes-key-pair","02_core_ledger/05_stake_pool/registering_stake_pool.html#choosing-the--tax--parameters","02_core_ledger/05_stake_pool/registering_stake_pool.html#so-how-does-this-works","02_core_ledger/05_stake_pool/registering_stake_pool.html#the-options-to-set","02_core_ledger/05_stake_pool/registering_stake_pool.html#creating-a-stake-pool-certificate","02_core_ledger/05_stake_pool/registering_stake_pool.html#submitting-to-a-node","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retiring-a-stake-pool","02_core_ledger/05_stake_pool/retiring_stake_pool.html#retrieve-stake-pool-id","02_core_ledger/05_stake_pool/retiring_stake_pool.html#creating-a-retirement-certificate","02_core_ledger/05_stake_pool/retiring_stake_pool.html#submitting-to-a-node","02_core_ledger/06_advanced/index.html#advanced","02_core_ledger/06_advanced/01_the_genesis_block.html#genesis-file","02_core_ledger/06_advanced/01_the_genesis_block.html#blockchain_configuration-options","02_core_ledger/06_advanced/01_the_genesis_block.html#initial-options","02_core_ledger/06_advanced/01_the_genesis_block.html#fund-and-legacy_fund-format","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-a-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#how-does-it-work","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#example-of-genesis-file","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#creating-the-block-0","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#starting-the-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#step-by-step-to-start-the-bft-node","02_core_ledger/06_advanced/02_starting_bft_blockchain.html#script","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-a-genesis-blockchain","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#the-initial-certificates","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#stake-pool-registration","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#delegating-stake","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#starting-the-node","02_core_ledger/06_advanced/03_starting_genesis_praos_blockchain.html#test-script","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#how-vote-plans-vote-fragments-and-the-blockchain-transaction-work-and-inter-relate","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#sasha-prokhorenko","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#nicolo-padovani","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#felipe-rosa","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#joaquin-rosales","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#proposalchain_proposal_id","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefano-cunego","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#conor-gannon","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#alex-pozhylenkov","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#spending-counters","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#cameron-mcloughlin","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#dariusz-kijania","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#ognjen-dokmanovic","02_core_ledger/06_advanced/04_vote_fragments_voteplan_blockchain_relationships.html#stefan-rasevic","02_core_ledger/07_specs/index.html#jormungandr-specifications","02_core_ledger/07_specs/migration.html#migration","02_core_ledger/07_specs/migration.html#vocabulary","02_core_ledger/07_specs/migration.html#description","02_core_ledger/07_specs/migration.html#mechanisms","02_core_ledger/07_specs/migration.html#transaction","02_core_ledger/07_specs/migration.html#mainnet-testnet-tests","02_core_ledger/07_specs/migration.html#advantages","02_core_ledger/07_specs/migration.html#historical-data","02_core_ledger/07_specs/network.html#network","02_core_ledger/07_specs/network.html#introduction","02_core_ledger/07_specs/network.html#design-decisions-guidelines","02_core_ledger/07_specs/network.html#node-to-node-communication","02_core_ledger/07_specs/network.html#general-functionality","02_core_ledger/07_specs/network.html#design","02_core_ledger/07_specs/network.html#node-to-client-communication","02_core_ledger/07_specs/network.html#peer-to-peer-network","02_core_ledger/07_specs/network.html#definitions","02_core_ledger/07_specs/network.html#functionalities","02_core_ledger/07_specs/network.html#messages","02_core_ledger/07_specs/network.html#communications-design","02_core_ledger/07_specs/network.html#adversarial-models-considered","02_core_ledger/07_specs/network.html#adversarial-forks","02_core_ledger/07_specs/network.html#flooding-attack","02_core_ledger/07_specs/network.html#anonymity-against-distributed-adversaries","02_core_ledger/07_specs/network.html#man-in-the-middle","02_core_ledger/07_specs/network.html#in-relation-to-ouroboros-genesis","02_core_ledger/08_testing/index.html#testing","02_core_ledger/08_testing/automation.html#jormungandr-automation","02_core_ledger/08_testing/automation.html#build","02_core_ledger/08_testing/automation.html#jcli-testing-api","02_core_ledger/08_testing/automation.html#jormungandr-testing-api","02_core_ledger/08_testing/automation.html#testing","02_core_ledger/08_testing/hersir.html#hersir","02_core_ledger/08_testing/hersir.html#build--install","02_core_ledger/08_testing/hersir.html#quick-start","02_core_ledger/08_testing/hersir.html#configuration","02_core_ledger/08_testing/hersir.html#full-list-of-available-parameters","02_core_ledger/08_testing/hersir.html#full-list-of-available-commands","02_core_ledger/08_testing/integration_tests.html#jormungandr-integration-tests","02_core_ledger/08_testing/integration_tests.html#architecture-of-tests","02_core_ledger/08_testing/integration_tests.html#quick-start","02_core_ledger/08_testing/integration_tests.html#prerequisites","02_core_ledger/08_testing/integration_tests.html#start-tests","02_core_ledger/08_testing/integration_tests.html#tests-categories","02_core_ledger/08_testing/integration_tests.html#how-to-run-all-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-jcli-only-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-single-node-endurance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-functional-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-performance-tests","02_core_ledger/08_testing/integration_tests.html#how-to-run-network-endurance-tests","02_core_ledger/08_testing/integration_tests.html#frequency","02_core_ledger/08_testing/loki.html#loki","02_core_ledger/08_testing/loki.html#build--install","02_core_ledger/08_testing/loki.html#quick-start","02_core_ledger/08_testing/loki.html#other-possible-operations","02_core_ledger/08_testing/loki.html#api","02_core_ledger/08_testing/mjolnir.html#mjolnir","02_core_ledger/08_testing/mjolnir.html#build--install","02_core_ledger/08_testing/mjolnir.html#quick-start","02_core_ledger/08_testing/mjolnir.html#cli","02_core_ledger/08_testing/mjolnir.html#api","02_core_ledger/08_testing/mjolnir.html#full-list-of-available-commands","02_core_ledger/08_testing/thor.html#thor","02_core_ledger/08_testing/thor.html#build--install","02_core_ledger/08_testing/thor.html#quick-start","02_core_ledger/08_testing/thor.html#cli","02_core_ledger/08_testing/thor.html#api","02_core_ledger/08_testing/thor.html#configuration","02_core_ledger/08_testing/thor.html#full-list-of-available-commands","02_core_ledger/09_internal_design/index.html#internal-design","02_core_ledger/09_internal_design/index.html#tasks","02_core_ledger/09_internal_design/index.html#maintaining-the-blockchains-state","02_core_ledger/09_internal_design/index.html#from-the-block-0","02_core_ledger/09_internal_design/index.html#for-a-block","02_core_ledger/09_internal_design/index.html#epoch-transition","02_core_ledger/09_internal_design/01_auto-start.html#automatic-deployment-of-the-voting-blockchain","02_core_ledger/09_internal_design/01_auto-start.html#overview","02_core_ledger/09_internal_design/01_auto-start.html#configuration","02_core_ledger/09_internal_design/02_permissionless_auth.html#permissionless-auth","03_core_testing/index.html#catalyst-testing-user-guide","03_core_testing/iapyx/index.html#iapyx","03_core_testing/iapyx/iapyx.html#iapyx","03_core_testing/iapyx/iapyx.html#build--install","03_core_testing/iapyx/iapyx.html#quick-start","03_core_testing/iapyx/iapyx.html#cli","03_core_testing/iapyx/iapyx.html#api","03_core_testing/iapyx/iapyx.html#configuration","03_core_testing/iapyx/iapyx.html#full-list-of-available-commands","03_core_testing/iapyx/load.html#iapyx-load","03_core_testing/iapyx/load.html#build--install","03_core_testing/iapyx/load.html#quick-start","03_core_testing/iapyx/load.html#cli","03_core_testing/iapyx/load.html#api","03_core_testing/iapyx/load.html#full-list-of-available-commands","03_core_testing/integration-tests/index.html#integration-tests","03_core_testing/integration-tests/index.html#architecture-of-tests","03_core_testing/integration-tests/index.html#quick-start","03_core_testing/integration-tests/index.html#prerequisites","03_core_testing/integration-tests/index.html#start-tests","03_core_testing/integration-tests/index.html#tests-categories","03_core_testing/integration-tests/index.html#how-to-run-all-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-testnet-functional-tests","03_core_testing/integration-tests/index.html#how-to-run-load-tests","03_core_testing/integration-tests/index.html#how-to-run-network-endurance-tests","03_core_testing/integration-tests/index.html#frequency","03_core_testing/registration-service/index.html#registration-service","03_core_testing/registration-service/index.html#build","03_core_testing/registration-service/index.html#quick-start","03_core_testing/registration-service/index.html#clients","03_core_testing/registration-service/index.html#cli","03_core_testing/registration-service/index.html#api","03_core_testing/registration-service/cli.html#registration-cli","03_core_testing/registration-service/cli.html#build--install","03_core_testing/registration-service/cli.html#quick-start","03_core_testing/registration-service/cli.html#full-list-of-available-commands","03_core_testing/registration-service/configuration.html#configuration","03_core_testing/registration-verify-service/index.html#registration-service","03_core_testing/registration-verify-service/index.html#build","03_core_testing/registration-verify-service/index.html#quick-start","03_core_testing/registration-verify-service/index.html#clients","03_core_testing/registration-verify-service/index.html#cli","03_core_testing/registration-verify-service/index.html#api","03_core_testing/registration-verify-service/cli.html#registration-verify-cli","03_core_testing/registration-verify-service/cli.html#build--install","03_core_testing/registration-verify-service/cli.html#quick-start","03_core_testing/registration-verify-service/cli.html#full-list-of-available-commands","03_core_testing/registration-verify-service/configuration.html#configuration","03_core_testing/snapshot-service/index.html#snapshot-trigger-service","03_core_testing/snapshot-service/index.html#build","03_core_testing/snapshot-service/index.html#quick-start","03_core_testing/snapshot-service/index.html#usage","03_core_testing/snapshot-service/index.html#clients","03_core_testing/snapshot-service/index.html#cli","03_core_testing/snapshot-service/index.html#api","03_core_testing/snapshot-service/cli.html#registration-cli","03_core_testing/snapshot-service/cli.html#build--install","03_core_testing/snapshot-service/cli.html#quick-start","03_core_testing/snapshot-service/cli.html#full-list-of-available-commands","03_core_testing/snapshot-service/configuration.html#configuration","03_core_testing/snapshot-wormhole/index.html#snapshot-wormhole","03_core_testing/snapshot-wormhole/index.html#build","03_core_testing/snapshot-wormhole/index.html#run","03_core_testing/snapshot-wormhole/index.html#quick-start","03_core_testing/snapshot-wormhole/index.html#run-modes","03_core_testing/snapshot-wormhole/configuration.html#configuration","03_core_testing/snapshot-wormhole/configuration.html#snapshot-service","03_core_testing/snapshot-wormhole/configuration.html#servicing-station-service","03_core_testing/snapshot-wormhole/configuration.html#parameters","03_core_testing/valgrind/index.html#valgrind","03_core_testing/valgrind/index.html#build","03_core_testing/valgrind/index.html#quick-start","03_core_testing/valgrind/index.html#client","03_core_testing/valgrind/configuration.html#configuration","03_core_testing/vitup/index.html#vitup","03_core_testing/vitup/index.html#build","03_core_testing/vitup/index.html#quick-start","03_core_testing/vitup/configuration.html#configuration","03_core_testing/vitup/configuration.html#serdedefault","03_core_testing/vitup/data_generation/index.html#data-generation","03_core_testing/vitup/data_generation/reset.html#configuration","03_core_testing/vitup/data_generation/reset.html#initials","03_core_testing/vitup/data_generation/reset.html#snapshot","03_core_testing/vitup/data_generation/reset.html#block0","03_core_testing/vitup/data_generation/reset.html#snapshot-1","03_core_testing/vitup/data_generation/reset.html#vote-plan","03_core_testing/vitup/data_generation/reset.html#vote-time","03_core_testing/vitup/data_generation/reset.html#example","03_core_testing/vitup/data_generation/reset.html#data","03_core_testing/vitup/data_generation/reset.html#current-fund","03_core_testing/vitup/data_generation/reset.html#next-funds","03_core_testing/vitup/data_generation/reset.html#service","03_core_testing/vitup/data_generation/reset.html#version","03_core_testing/vitup/data_generation/reset.html#https","03_core_testing/vitup/data_generation/reset.html#full-example","03_core_testing/vitup/data_generation/snapshot.html#configuration","03_core_testing/vitup/data_generation/snapshot.html#example","03_core_testing/vitup/data_generation/snapshot.html#parameters","03_core_testing/vitup/data_generation/snapshot.html#content","03_core_testing/vitup/data_generation/snapshot.html#actor","03_core_testing/vitup/data_generation.html#data-generation","03_core_testing/vitup/mock.html#mock","03_core_testing/vitup/mock.html#configuration","03_core_testing/vitup/mock.html#start","03_core_testing/vitup/mock.html#admin-rest-commands","03_core_testing/vitup/mock.html#admin-cli","03_core_testing/vitup/mock_farm.html#mock-farm","03_core_testing/vitup/mock_farm.html#configuration","03_core_testing/vitup/mock_farm.html#start","03_core_testing/vitup/mock_farm.html#documentation","03_core_testing/vitup/run_modes.html#configuration-modes","03_core_testing/vitup/run_modes.html#run-modes","03_core_testing/vitup/run_modes.html#endless-mode","03_core_testing/vitup/run_modes.html#service-mode","03_core_testing/vitup/run_modes.html#admin-operations","03_core_testing/vitup/run_modes.html#how-to-send-operations","03_core_testing/vitup/run_modes.html#check-environment-status","03_core_testing/vitup/run_modes.html#start-environment","03_core_testing/vitup/run_modes.html#list-files","03_core_testing/vitup/run_modes.html#get-files","03_core_testing/vitup/run_modes.html#interactive-mode","04_core_vitss/index.html#core-vit-servicing-station","04_core_vitss/testing.html#vit-servicing-station-tests","04_core_vitss/testing.html#quick-start","04_core_vitss/testing.html#prerequisites","04_core_vitss/testing.html#start-tests","04_core_vitss/testing.html#tests-categories","04_core_vitss/testing.html#how-to-run-all-functional-tests","04_core_vitss/testing.html#how-to-run-performance-tests","04_core_vitss/testing.html#how-to-run-endurance-tests","04_core_vitss/testing.html#frequency","05_unified_platform/index.html#unified-platform","05_unified_platform/01_catalyst-cardano-bridge/index.html#overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#issues-with-the-previous-systems","05_unified_platform/01_catalyst-cardano-bridge/index.html#the-solution","05_unified_platform/01_catalyst-cardano-bridge/index.html#architecture-overview","05_unified_platform/01_catalyst-cardano-bridge/index.html#architectural-diagram","05_unified_platform/01_catalyst-cardano-bridge/index.html#integration-to-the-catalyst-unified-backend","05_unified_platform/01_catalyst-cardano-bridge/01_cardano_nodes.html#cardano-nodes","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/index.html#bridge-pipeline","05_unified_platform/01_catalyst-cardano-bridge/02_bridge_pipeline/01_block_reader.html#block-reader","05_unified_platform/01_catalyst-cardano-bridge/03_rest_http_service.html#rest-http-service","05_unified_platform/01_catalyst-cardano-bridge/04_event_stream.html#event-stream","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#database","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#servers","05_unified_platform/01_catalyst-cardano-bridge/05_database/index.html#high-level-data-design","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#registrations-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#current-voter-registration","05_unified_platform/01_catalyst-cardano-bridge/05_database/01_registration_db.html#all-current-voter-registrations","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-ada-database","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#data","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#queries","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#all-current-staked-ada","05_unified_platform/01_catalyst-cardano-bridge/05_database/02_staked_ada_db.html#staked-balances-for-a-period","05_unified_platform/01_catalyst-cardano-bridge/05_database/03_transaction_state.html#transaction-state-database","06_rust_api/index.html#rust-api","06_rust_api/rust_api.html#rust-api-documentation-and-packages","06_rust_api/rust_api.html#blockchain","06_rust_api/rust_api.html#db-sync-explorer","06_rust_api/rust_api.html#explorer---explorer-service-for-jormungandr","06_rust_api/rust_api.html#integration-tests","06_rust_api/rust_api.html#jormungandr---midgard-serpent","06_rust_api/rust_api.html#jormungandrwallet","06_rust_api/rust_api.html#mjolnir","06_rust_api/rust_api.html#settings","06_rust_api/rust_api.html#sparse-array","06_rust_api/rust_api.html#vit-servicing-station-cli","06_rust_api/rust_api.html#vit-servicing-station-server","06_rust_api/rust_api.html#wallet-wasm-js---wallet-functionalities-to-interact-with-jörmungandr--this-package-profiles-all-that-is-needed-to-have-an-healthy-and-secure-interaction-with-jörmungandr-blockchain-technology","06_rust_api/rust_style_guide.html#-rust-style-guide","06_rust_api/rust_style_guide.html#toolchain","06_rust_api/rust_style_guide.html#basic-rules","06_rust_api/rust_style_guide.html#creating-a-new-crate","06_rust_api/rust_style_guide.html#exceptions-for-clippy","06_rust_api/rust_style_guide.html#guidelines","06_rust_api/rust_style_guide.html#prefer-references-over-generics","06_rust_api/rust_style_guide.html#abbreviations-and-naming-things","06_rust_api/rust_style_guide.html#pay-attention-to-the-public-api-of-your-crate","06_rust_api/rust_style_guide.html#type-safety","06_rust_api/rust_style_guide.html#use-newtypes-aka-microtypes","06_rust_api/rust_style_guide.html#dont-over-abstract","06_rust_api/rust_style_guide.html#unsafe-code","06_rust_api/rust_style_guide.html#docs","06_rust_api/rust_style_guide.html#doctests","06_rust_api/rust_style_guide.html#write-code-as-if-its-going-to-be-in-a-web-server","06_rust_api/rust_style_guide.html#error-handling","06_rust_api/rust_style_guide.html#handling-expected-errors","07_web_api/index.html#web-api","07_web_api/dbsync-explorer.html#dbsync-explorer-httprest-api-v1","07_web_api/vit-servicing-station-v0.html#vit-servicing-station-httprest-api-v0","07_web_api/vit-testing-mock-farm-v0.html#vit-testing-mock-farm-httprest-api-v0","07_web_api/vit-testing-mock-v0.html#vit-testing-mock-httprest-api-v0","07_web_api/vote-ledger-v0.html#vote-ledger-httprest-api-v0","07_web_api/vote-ledger-v1.html#vote-ledger-httprest-api-v1","97_CONTRIBUTING.html#contributing-to-catalyst-core","97_CONTRIBUTING.html#table-of-contents","97_CONTRIBUTING.html#code-of-conduct","97_CONTRIBUTING.html#i-have-a-question","97_CONTRIBUTING.html#i-want-to-contribute","97_CONTRIBUTING.html#legal-notice","97_CONTRIBUTING.html#reporting-bugs","97_CONTRIBUTING.html#suggesting-enhancements","97_CONTRIBUTING.html#your-first-code-contribution","97_CONTRIBUTING.html#improving-the-documentation","97_CONTRIBUTING.html#styleguides","97_CONTRIBUTING.html#commit-messages","98_CODE_OF_CONDUCT.html#contributor-covenant-code-of-conduct","98_CODE_OF_CONDUCT.html#our-pledge","98_CODE_OF_CONDUCT.html#our-standards","98_CODE_OF_CONDUCT.html#enforcement-responsibilities","98_CODE_OF_CONDUCT.html#scope","98_CODE_OF_CONDUCT.html#enforcement","98_CODE_OF_CONDUCT.html#enforcement-guidelines","98_CODE_OF_CONDUCT.html#1-correction","98_CODE_OF_CONDUCT.html#2-warning","98_CODE_OF_CONDUCT.html#3-temporary-ban","98_CODE_OF_CONDUCT.html#4-permanent-ban","98_CODE_OF_CONDUCT.html#attribution","99_example_enhanced_markup.html#example-enhanced-markup","99_example_enhanced_markup.html#example-rendered-diagrams","ZZ_suffix.html#suffix"],"index":{"documentStore":{"docInfo":{"0":{"body":34,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":31,"breadcrumbs":7,"title":1},"100":{"body":16,"breadcrumbs":7,"title":3},"101":{"body":11,"breadcrumbs":8,"title":4},"102":{"body":64,"breadcrumbs":7,"title":2},"103":{"body":50,"breadcrumbs":7,"title":2},"104":{"body":46,"breadcrumbs":8,"title":3},"105":{"body":9,"breadcrumbs":5,"title":1},"106":{"body":61,"breadcrumbs":5,"title":1},"107":{"body":162,"breadcrumbs":6,"title":2},"108":{"body":49,"breadcrumbs":5,"title":1},"109":{"body":44,"breadcrumbs":6,"title":2},"11":{"body":91,"breadcrumbs":7,"title":1},"110":{"body":110,"breadcrumbs":6,"title":2},"111":{"body":19,"breadcrumbs":6,"title":2},"112":{"body":25,"breadcrumbs":5,"title":1},"113":{"body":49,"breadcrumbs":7,"title":3},"114":{"body":66,"breadcrumbs":6,"title":2},"115":{"body":204,"breadcrumbs":6,"title":2},"116":{"body":15,"breadcrumbs":6,"title":2},"117":{"body":30,"breadcrumbs":5,"title":1},"118":{"body":48,"breadcrumbs":6,"title":2},"119":{"body":23,"breadcrumbs":6,"title":2},"12":{"body":26,"breadcrumbs":7,"title":1},"120":{"body":91,"breadcrumbs":6,"title":2},"121":{"body":33,"breadcrumbs":6,"title":2},"122":{"body":128,"breadcrumbs":6,"title":2},"123":{"body":76,"breadcrumbs":6,"title":2},"124":{"body":83,"breadcrumbs":7,"title":3},"125":{"body":90,"breadcrumbs":8,"title":4},"126":{"body":96,"breadcrumbs":7,"title":3},"127":{"body":31,"breadcrumbs":7,"title":3},"128":{"body":61,"breadcrumbs":8,"title":4},"129":{"body":98,"breadcrumbs":5,"title":1},"13":{"body":21,"breadcrumbs":7,"title":1},"130":{"body":296,"breadcrumbs":6,"title":2},"131":{"body":38,"breadcrumbs":5,"title":1},"132":{"body":16,"breadcrumbs":6,"title":2},"133":{"body":2,"breadcrumbs":6,"title":2},"134":{"body":5,"breadcrumbs":7,"title":3},"135":{"body":18,"breadcrumbs":6,"title":2},"136":{"body":9,"breadcrumbs":8,"title":4},"137":{"body":13,"breadcrumbs":8,"title":4},"138":{"body":14,"breadcrumbs":6,"title":2},"139":{"body":86,"breadcrumbs":8,"title":4},"14":{"body":69,"breadcrumbs":7,"title":1},"140":{"body":0,"breadcrumbs":6,"title":2},"141":{"body":139,"breadcrumbs":6,"title":2},"142":{"body":7,"breadcrumbs":6,"title":2},"143":{"body":31,"breadcrumbs":6,"title":2},"144":{"body":65,"breadcrumbs":7,"title":3},"145":{"body":17,"breadcrumbs":5,"title":1},"146":{"body":0,"breadcrumbs":7,"title":3},"147":{"body":143,"breadcrumbs":5,"title":1},"148":{"body":61,"breadcrumbs":7,"title":3},"149":{"body":171,"breadcrumbs":6,"title":2},"15":{"body":65,"breadcrumbs":7,"title":1},"150":{"body":0,"breadcrumbs":5,"title":1},"151":{"body":165,"breadcrumbs":7,"title":3},"152":{"body":141,"breadcrumbs":7,"title":3},"153":{"body":17,"breadcrumbs":8,"title":2},"154":{"body":0,"breadcrumbs":8,"title":2},"155":{"body":10,"breadcrumbs":9,"title":3},"156":{"body":60,"breadcrumbs":7,"title":1},"157":{"body":28,"breadcrumbs":7,"title":1},"158":{"body":65,"breadcrumbs":8,"title":2},"159":{"body":46,"breadcrumbs":9,"title":3},"16":{"body":29,"breadcrumbs":8,"title":2},"160":{"body":58,"breadcrumbs":10,"title":3},"161":{"body":0,"breadcrumbs":8,"title":1},"162":{"body":33,"breadcrumbs":10,"title":3},"163":{"body":27,"breadcrumbs":10,"title":3},"164":{"body":46,"breadcrumbs":10,"title":3},"165":{"body":116,"breadcrumbs":8,"title":1},"166":{"body":61,"breadcrumbs":9,"title":2},"167":{"body":59,"breadcrumbs":11,"title":4},"168":{"body":70,"breadcrumbs":9,"title":2},"169":{"body":32,"breadcrumbs":10,"title":3},"17":{"body":35,"breadcrumbs":7,"title":1},"170":{"body":11,"breadcrumbs":11,"title":4},"171":{"body":43,"breadcrumbs":10,"title":3},"172":{"body":92,"breadcrumbs":9,"title":2},"173":{"body":25,"breadcrumbs":5,"title":1},"174":{"body":746,"breadcrumbs":7,"title":2},"175":{"body":101,"breadcrumbs":7,"title":2},"176":{"body":60,"breadcrumbs":7,"title":2},"177":{"body":24,"breadcrumbs":8,"title":3},"178":{"body":22,"breadcrumbs":9,"title":3},"179":{"body":39,"breadcrumbs":7,"title":1},"18":{"body":54,"breadcrumbs":8,"title":2},"180":{"body":54,"breadcrumbs":9,"title":3},"181":{"body":19,"breadcrumbs":9,"title":3},"182":{"body":42,"breadcrumbs":8,"title":2},"183":{"body":90,"breadcrumbs":11,"title":5},"184":{"body":15,"breadcrumbs":7,"title":1},"185":{"body":78,"breadcrumbs":9,"title":3},"186":{"body":32,"breadcrumbs":8,"title":2},"187":{"body":25,"breadcrumbs":9,"title":3},"188":{"body":92,"breadcrumbs":8,"title":2},"189":{"body":55,"breadcrumbs":8,"title":2},"19":{"body":28,"breadcrumbs":8,"title":2},"190":{"body":18,"breadcrumbs":8,"title":2},"191":{"body":194,"breadcrumbs":21,"title":9},"192":{"body":0,"breadcrumbs":14,"title":2},"193":{"body":0,"breadcrumbs":14,"title":2},"194":{"body":0,"breadcrumbs":14,"title":2},"195":{"body":0,"breadcrumbs":14,"title":2},"196":{"body":81,"breadcrumbs":13,"title":1},"197":{"body":0,"breadcrumbs":14,"title":2},"198":{"body":0,"breadcrumbs":14,"title":2},"199":{"body":0,"breadcrumbs":14,"title":2},"2":{"body":5,"breadcrumbs":3,"title":2},"20":{"body":87,"breadcrumbs":8,"title":2},"200":{"body":110,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":0,"breadcrumbs":14,"title":2},"203":{"body":0,"breadcrumbs":14,"title":2},"204":{"body":5,"breadcrumbs":14,"title":2},"205":{"body":13,"breadcrumbs":8,"title":2},"206":{"body":12,"breadcrumbs":6,"title":1},"207":{"body":5,"breadcrumbs":6,"title":1},"208":{"body":154,"breadcrumbs":6,"title":1},"209":{"body":123,"breadcrumbs":6,"title":1},"21":{"body":42,"breadcrumbs":7,"title":1},"210":{"body":58,"breadcrumbs":6,"title":1},"211":{"body":92,"breadcrumbs":8,"title":3},"212":{"body":42,"breadcrumbs":6,"title":1},"213":{"body":123,"breadcrumbs":7,"title":2},"214":{"body":3,"breadcrumbs":6,"title":1},"215":{"body":19,"breadcrumbs":6,"title":1},"216":{"body":53,"breadcrumbs":8,"title":3},"217":{"body":16,"breadcrumbs":8,"title":3},"218":{"body":32,"breadcrumbs":7,"title":2},"219":{"body":647,"breadcrumbs":6,"title":1},"22":{"body":45,"breadcrumbs":8,"title":2},"220":{"body":30,"breadcrumbs":8,"title":3},"221":{"body":18,"breadcrumbs":8,"title":3},"222":{"body":29,"breadcrumbs":6,"title":1},"223":{"body":39,"breadcrumbs":6,"title":1},"224":{"body":26,"breadcrumbs":6,"title":1},"225":{"body":326,"breadcrumbs":7,"title":2},"226":{"body":0,"breadcrumbs":8,"title":3},"227":{"body":166,"breadcrumbs":7,"title":2},"228":{"body":100,"breadcrumbs":7,"title":2},"229":{"body":48,"breadcrumbs":9,"title":4},"23":{"body":80,"breadcrumbs":8,"title":2},"230":{"body":42,"breadcrumbs":7,"title":2},"231":{"body":49,"breadcrumbs":8,"title":3},"232":{"body":69,"breadcrumbs":5,"title":1},"233":{"body":5,"breadcrumbs":7,"title":2},"234":{"body":13,"breadcrumbs":6,"title":1},"235":{"body":28,"breadcrumbs":8,"title":3},"236":{"body":72,"breadcrumbs":8,"title":3},"237":{"body":107,"breadcrumbs":6,"title":1},"238":{"body":12,"breadcrumbs":5,"title":1},"239":{"body":15,"breadcrumbs":6,"title":2},"24":{"body":162,"breadcrumbs":7,"title":1},"240":{"body":15,"breadcrumbs":6,"title":2},"241":{"body":54,"breadcrumbs":5,"title":1},"242":{"body":529,"breadcrumbs":8,"title":4},"243":{"body":36,"breadcrumbs":8,"title":4},"244":{"body":22,"breadcrumbs":9,"title":3},"245":{"body":38,"breadcrumbs":8,"title":2},"246":{"body":0,"breadcrumbs":8,"title":2},"247":{"body":8,"breadcrumbs":7,"title":1},"248":{"body":12,"breadcrumbs":8,"title":2},"249":{"body":19,"breadcrumbs":8,"title":2},"25":{"body":0,"breadcrumbs":8,"title":2},"250":{"body":9,"breadcrumbs":9,"title":3},"251":{"body":7,"breadcrumbs":10,"title":4},"252":{"body":7,"breadcrumbs":11,"title":5},"253":{"body":10,"breadcrumbs":11,"title":5},"254":{"body":10,"breadcrumbs":11,"title":5},"255":{"body":9,"breadcrumbs":10,"title":4},"256":{"body":10,"breadcrumbs":10,"title":4},"257":{"body":10,"breadcrumbs":10,"title":4},"258":{"body":16,"breadcrumbs":7,"title":1},"259":{"body":8,"breadcrumbs":5,"title":1},"26":{"body":15,"breadcrumbs":8,"title":2},"260":{"body":15,"breadcrumbs":6,"title":2},"261":{"body":88,"breadcrumbs":6,"title":2},"262":{"body":24,"breadcrumbs":6,"title":2},"263":{"body":38,"breadcrumbs":5,"title":1},"264":{"body":8,"breadcrumbs":5,"title":1},"265":{"body":15,"breadcrumbs":6,"title":2},"266":{"body":0,"breadcrumbs":6,"title":2},"267":{"body":107,"breadcrumbs":5,"title":1},"268":{"body":99,"breadcrumbs":5,"title":1},"269":{"body":85,"breadcrumbs":8,"title":4},"27":{"body":19,"breadcrumbs":7,"title":1},"270":{"body":16,"breadcrumbs":5,"title":1},"271":{"body":15,"breadcrumbs":6,"title":2},"272":{"body":0,"breadcrumbs":6,"title":2},"273":{"body":66,"breadcrumbs":5,"title":1},"274":{"body":32,"breadcrumbs":5,"title":1},"275":{"body":25,"breadcrumbs":5,"title":1},"276":{"body":109,"breadcrumbs":8,"title":4},"277":{"body":26,"breadcrumbs":8,"title":2},"278":{"body":135,"breadcrumbs":7,"title":1},"279":{"body":103,"breadcrumbs":9,"title":3},"28":{"body":30,"breadcrumbs":9,"title":3},"280":{"body":62,"breadcrumbs":8,"title":2},"281":{"body":77,"breadcrumbs":7,"title":1},"282":{"body":11,"breadcrumbs":8,"title":2},"283":{"body":44,"breadcrumbs":12,"title":4},"284":{"body":91,"breadcrumbs":9,"title":1},"285":{"body":307,"breadcrumbs":9,"title":1},"286":{"body":117,"breadcrumbs":8,"title":2},"287":{"body":50,"breadcrumbs":12,"title":4},"288":{"body":0,"breadcrumbs":7,"title":1},"289":{"body":17,"breadcrumbs":7,"title":1},"29":{"body":21,"breadcrumbs":9,"title":3},"290":{"body":15,"breadcrumbs":8,"title":2},"291":{"body":0,"breadcrumbs":8,"title":2},"292":{"body":64,"breadcrumbs":7,"title":1},"293":{"body":36,"breadcrumbs":7,"title":1},"294":{"body":25,"breadcrumbs":7,"title":1},"295":{"body":124,"breadcrumbs":10,"title":4},"296":{"body":9,"breadcrumbs":9,"title":2},"297":{"body":16,"breadcrumbs":9,"title":2},"298":{"body":0,"breadcrumbs":9,"title":2},"299":{"body":250,"breadcrumbs":8,"title":1},"3":{"body":34,"breadcrumbs":6,"title":2},"30":{"body":21,"breadcrumbs":9,"title":3},"300":{"body":65,"breadcrumbs":8,"title":1},"301":{"body":85,"breadcrumbs":11,"title":4},"302":{"body":20,"breadcrumbs":10,"title":2},"303":{"body":39,"breadcrumbs":10,"title":2},"304":{"body":0,"breadcrumbs":10,"title":2},"305":{"body":28,"breadcrumbs":9,"title":1},"306":{"body":12,"breadcrumbs":10,"title":2},"307":{"body":19,"breadcrumbs":10,"title":2},"308":{"body":5,"breadcrumbs":11,"title":3},"309":{"body":8,"breadcrumbs":12,"title":4},"31":{"body":41,"breadcrumbs":6,"title":1},"310":{"body":9,"breadcrumbs":11,"title":3},"311":{"body":10,"breadcrumbs":12,"title":4},"312":{"body":11,"breadcrumbs":9,"title":1},"313":{"body":16,"breadcrumbs":10,"title":2},"314":{"body":16,"breadcrumbs":9,"title":1},"315":{"body":13,"breadcrumbs":10,"title":2},"316":{"body":0,"breadcrumbs":9,"title":1},"317":{"body":17,"breadcrumbs":9,"title":1},"318":{"body":63,"breadcrumbs":9,"title":1},"319":{"body":9,"breadcrumbs":10,"title":2},"32":{"body":40,"breadcrumbs":8,"title":3},"320":{"body":16,"breadcrumbs":10,"title":2},"321":{"body":61,"breadcrumbs":10,"title":2},"322":{"body":70,"breadcrumbs":12,"title":4},"323":{"body":88,"breadcrumbs":8,"title":1},"324":{"body":16,"breadcrumbs":10,"title":2},"325":{"body":19,"breadcrumbs":9,"title":1},"326":{"body":13,"breadcrumbs":10,"title":2},"327":{"body":0,"breadcrumbs":9,"title":1},"328":{"body":18,"breadcrumbs":9,"title":1},"329":{"body":30,"breadcrumbs":9,"title":1},"33":{"body":58,"breadcrumbs":8,"title":3},"330":{"body":10,"breadcrumbs":12,"title":3},"331":{"body":19,"breadcrumbs":11,"title":2},"332":{"body":62,"breadcrumbs":11,"title":2},"333":{"body":70,"breadcrumbs":13,"title":4},"334":{"body":102,"breadcrumbs":8,"title":1},"335":{"body":12,"breadcrumbs":13,"title":3},"336":{"body":19,"breadcrumbs":11,"title":1},"337":{"body":14,"breadcrumbs":12,"title":2},"338":{"body":77,"breadcrumbs":11,"title":1},"339":{"body":0,"breadcrumbs":11,"title":1},"34":{"body":28,"breadcrumbs":7,"title":2},"340":{"body":18,"breadcrumbs":11,"title":1},"341":{"body":26,"breadcrumbs":11,"title":1},"342":{"body":9,"breadcrumbs":11,"title":2},"343":{"body":17,"breadcrumbs":11,"title":2},"344":{"body":46,"breadcrumbs":11,"title":2},"345":{"body":77,"breadcrumbs":13,"title":4},"346":{"body":110,"breadcrumbs":9,"title":1},"347":{"body":20,"breadcrumbs":10,"title":2},"348":{"body":14,"breadcrumbs":9,"title":1},"349":{"body":0,"breadcrumbs":9,"title":1},"35":{"body":43,"breadcrumbs":7,"title":2},"350":{"body":27,"breadcrumbs":10,"title":2},"351":{"body":87,"breadcrumbs":10,"title":2},"352":{"body":9,"breadcrumbs":8,"title":1},"353":{"body":16,"breadcrumbs":9,"title":2},"354":{"body":13,"breadcrumbs":10,"title":3},"355":{"body":80,"breadcrumbs":8,"title":1},"356":{"body":9,"breadcrumbs":7,"title":1},"357":{"body":12,"breadcrumbs":7,"title":1},"358":{"body":12,"breadcrumbs":8,"title":2},"359":{"body":28,"breadcrumbs":7,"title":1},"36":{"body":30,"breadcrumbs":5,"title":1},"360":{"body":67,"breadcrumbs":7,"title":1},"361":{"body":19,"breadcrumbs":7,"title":1},"362":{"body":25,"breadcrumbs":7,"title":1},"363":{"body":15,"breadcrumbs":8,"title":2},"364":{"body":26,"breadcrumbs":7,"title":1},"365":{"body":72,"breadcrumbs":7,"title":1},"366":{"body":0,"breadcrumbs":11,"title":2},"367":{"body":17,"breadcrumbs":9,"title":1},"368":{"body":0,"breadcrumbs":9,"title":1},"369":{"body":16,"breadcrumbs":9,"title":1},"37":{"body":27,"breadcrumbs":8,"title":4},"370":{"body":93,"breadcrumbs":9,"title":1},"371":{"body":60,"breadcrumbs":9,"title":1},"372":{"body":0,"breadcrumbs":10,"title":2},"373":{"body":125,"breadcrumbs":10,"title":2},"374":{"body":178,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":154,"breadcrumbs":10,"title":2},"377":{"body":115,"breadcrumbs":10,"title":2},"378":{"body":10,"breadcrumbs":9,"title":1},"379":{"body":13,"breadcrumbs":9,"title":1},"38":{"body":23,"breadcrumbs":9,"title":5},"380":{"body":6,"breadcrumbs":9,"title":1},"381":{"body":117,"breadcrumbs":10,"title":2},"382":{"body":17,"breadcrumbs":9,"title":1},"383":{"body":37,"breadcrumbs":9,"title":1},"384":{"body":37,"breadcrumbs":9,"title":1},"385":{"body":3,"breadcrumbs":9,"title":1},"386":{"body":129,"breadcrumbs":9,"title":1},"387":{"body":5,"breadcrumbs":9,"title":2},"388":{"body":28,"breadcrumbs":7,"title":1},"389":{"body":18,"breadcrumbs":7,"title":1},"39":{"body":13,"breadcrumbs":6,"title":2},"390":{"body":5,"breadcrumbs":7,"title":1},"391":{"body":449,"breadcrumbs":9,"title":3},"392":{"body":22,"breadcrumbs":8,"title":2},"393":{"body":22,"breadcrumbs":9,"title":2},"394":{"body":70,"breadcrumbs":8,"title":1},"395":{"body":7,"breadcrumbs":8,"title":1},"396":{"body":8,"breadcrumbs":8,"title":1},"397":{"body":39,"breadcrumbs":9,"title":2},"398":{"body":58,"breadcrumbs":9,"title":2},"399":{"body":23,"breadcrumbs":9,"title":2},"4":{"body":18,"breadcrumbs":5,"title":1},"40":{"body":19,"breadcrumbs":9,"title":3},"400":{"body":19,"breadcrumbs":9,"title":2},"401":{"body":72,"breadcrumbs":9,"title":2},"402":{"body":57,"breadcrumbs":9,"title":2},"403":{"body":7,"breadcrumbs":10,"title":3},"404":{"body":46,"breadcrumbs":9,"title":2},"405":{"body":49,"breadcrumbs":9,"title":2},"406":{"body":25,"breadcrumbs":8,"title":1},"407":{"body":6,"breadcrumbs":9,"title":2},"408":{"body":0,"breadcrumbs":12,"title":4},"409":{"body":26,"breadcrumbs":12,"title":4},"41":{"body":0,"breadcrumbs":7,"title":1},"410":{"body":0,"breadcrumbs":10,"title":2},"411":{"body":10,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":10,"title":2},"413":{"body":13,"breadcrumbs":10,"title":2},"414":{"body":7,"breadcrumbs":11,"title":3},"415":{"body":10,"breadcrumbs":11,"title":3},"416":{"body":10,"breadcrumbs":11,"title":3},"417":{"body":16,"breadcrumbs":9,"title":1},"418":{"body":0,"breadcrumbs":6,"title":2},"419":{"body":36,"breadcrumbs":5,"title":1},"42":{"body":5,"breadcrumbs":7,"title":1},"420":{"body":152,"breadcrumbs":7,"title":3},"421":{"body":94,"breadcrumbs":5,"title":1},"422":{"body":209,"breadcrumbs":6,"title":2},"423":{"body":10,"breadcrumbs":6,"title":2},"424":{"body":176,"breadcrumbs":8,"title":4},"425":{"body":48,"breadcrumbs":7,"title":2},"426":{"body":0,"breadcrumbs":9,"title":2},"427":{"body":5,"breadcrumbs":9,"title":2},"428":{"body":5,"breadcrumbs":9,"title":3},"429":{"body":5,"breadcrumbs":7,"title":2},"43":{"body":10,"breadcrumbs":7,"title":1},"430":{"body":34,"breadcrumbs":6,"title":1},"431":{"body":43,"breadcrumbs":6,"title":1},"432":{"body":19,"breadcrumbs":9,"title":4},"433":{"body":20,"breadcrumbs":8,"title":2},"434":{"body":86,"breadcrumbs":7,"title":1},"435":{"body":3,"breadcrumbs":7,"title":1},"436":{"body":44,"breadcrumbs":9,"title":3},"437":{"body":49,"breadcrumbs":9,"title":3},"438":{"body":21,"breadcrumbs":10,"title":3},"439":{"body":137,"breadcrumbs":8,"title":1},"44":{"body":47,"breadcrumbs":9,"title":3},"440":{"body":3,"breadcrumbs":8,"title":1},"441":{"body":26,"breadcrumbs":10,"title":3},"442":{"body":26,"breadcrumbs":10,"title":3},"443":{"body":42,"breadcrumbs":10,"title":3},"444":{"body":79,"breadcrumbs":10,"title":3},"445":{"body":0,"breadcrumbs":6,"title":2},"446":{"body":0,"breadcrumbs":10,"title":4},"447":{"body":64,"breadcrumbs":7,"title":1},"448":{"body":2658,"breadcrumbs":9,"title":3},"449":{"body":8802,"breadcrumbs":10,"title":4},"45":{"body":67,"breadcrumbs":9,"title":3},"450":{"body":103278,"breadcrumbs":8,"title":2},"451":{"body":225,"breadcrumbs":9,"title":3},"452":{"body":657,"breadcrumbs":7,"title":1},"453":{"body":2925,"breadcrumbs":7,"title":1},"454":{"body":1,"breadcrumbs":7,"title":1},"455":{"body":2,"breadcrumbs":8,"title":2},"456":{"body":252,"breadcrumbs":10,"title":4},"457":{"body":252,"breadcrumbs":10,"title":4},"458":{"body":454,"breadcrumbs":22,"title":16},"459":{"body":87,"breadcrumbs":8,"title":3},"46":{"body":5,"breadcrumbs":8,"title":2},"460":{"body":18,"breadcrumbs":6,"title":1},"461":{"body":81,"breadcrumbs":7,"title":2},"462":{"body":128,"breadcrumbs":8,"title":3},"463":{"body":81,"breadcrumbs":7,"title":2},"464":{"body":0,"breadcrumbs":6,"title":1},"465":{"body":101,"breadcrumbs":9,"title":4},"466":{"body":115,"breadcrumbs":8,"title":3},"467":{"body":53,"breadcrumbs":10,"title":5},"468":{"body":34,"breadcrumbs":7,"title":2},"469":{"body":64,"breadcrumbs":9,"title":4},"47":{"body":340,"breadcrumbs":7,"title":1},"470":{"body":139,"breadcrumbs":8,"title":3},"471":{"body":117,"breadcrumbs":7,"title":2},"472":{"body":73,"breadcrumbs":6,"title":1},"473":{"body":49,"breadcrumbs":6,"title":1},"474":{"body":29,"breadcrumbs":11,"title":6},"475":{"body":124,"breadcrumbs":7,"title":2},"476":{"body":124,"breadcrumbs":8,"title":3},"477":{"body":0,"breadcrumbs":6,"title":2},"478":{"body":5,"breadcrumbs":12,"title":5},"479":{"body":5,"breadcrumbs":14,"title":6},"48":{"body":49,"breadcrumbs":8,"title":2},"480":{"body":5,"breadcrumbs":16,"title":7},"481":{"body":5,"breadcrumbs":14,"title":6},"482":{"body":5,"breadcrumbs":12,"title":5},"483":{"body":5,"breadcrumbs":12,"title":5},"484":{"body":66,"breadcrumbs":6,"title":3},"485":{"body":17,"breadcrumbs":5,"title":2},"486":{"body":18,"breadcrumbs":5,"title":2},"487":{"body":62,"breadcrumbs":4,"title":1},"488":{"body":0,"breadcrumbs":5,"title":2},"489":{"body":15,"breadcrumbs":5,"title":2},"49":{"body":64,"breadcrumbs":7,"title":2},"490":{"body":257,"breadcrumbs":5,"title":2},"491":{"body":168,"breadcrumbs":5,"title":2},"492":{"body":0,"breadcrumbs":6,"title":3},"493":{"body":0,"breadcrumbs":5,"title":2},"494":{"body":0,"breadcrumbs":4,"title":1},"495":{"body":0,"breadcrumbs":5,"title":2},"496":{"body":0,"breadcrumbs":8,"title":4},"497":{"body":49,"breadcrumbs":5,"title":1},"498":{"body":75,"breadcrumbs":5,"title":1},"499":{"body":42,"breadcrumbs":6,"title":2},"5":{"body":12,"breadcrumbs":8,"title":2},"50":{"body":13,"breadcrumbs":7,"title":2},"500":{"body":34,"breadcrumbs":5,"title":1},"501":{"body":25,"breadcrumbs":5,"title":1},"502":{"body":13,"breadcrumbs":6,"title":2},"503":{"body":27,"breadcrumbs":6,"title":2},"504":{"body":42,"breadcrumbs":6,"title":2},"505":{"body":41,"breadcrumbs":7,"title":3},"506":{"body":26,"breadcrumbs":7,"title":3},"507":{"body":37,"breadcrumbs":5,"title":1},"508":{"body":46,"breadcrumbs":6,"title":3},"509":{"body":16,"breadcrumbs":6,"title":3},"51":{"body":17,"breadcrumbs":6,"title":1},"510":{"body":5,"breadcrumbs":2,"title":1},"52":{"body":11,"breadcrumbs":6,"title":1},"53":{"body":50,"breadcrumbs":6,"title":1},"54":{"body":0,"breadcrumbs":11,"title":4},"55":{"body":39,"breadcrumbs":9,"title":2},"56":{"body":59,"breadcrumbs":10,"title":3},"57":{"body":54,"breadcrumbs":10,"title":3},"58":{"body":12,"breadcrumbs":5,"title":1},"59":{"body":188,"breadcrumbs":6,"title":2},"6":{"body":0,"breadcrumbs":8,"title":2},"60":{"body":0,"breadcrumbs":5,"title":1},"61":{"body":25,"breadcrumbs":6,"title":2},"62":{"body":34,"breadcrumbs":8,"title":4},"63":{"body":37,"breadcrumbs":5,"title":1},"64":{"body":81,"breadcrumbs":5,"title":1},"65":{"body":4,"breadcrumbs":5,"title":1},"66":{"body":7,"breadcrumbs":6,"title":2},"67":{"body":13,"breadcrumbs":6,"title":2},"68":{"body":70,"breadcrumbs":5,"title":1},"69":{"body":44,"breadcrumbs":6,"title":2},"7":{"body":18,"breadcrumbs":7,"title":1},"70":{"body":9,"breadcrumbs":7,"title":2},"71":{"body":68,"breadcrumbs":8,"title":3},"72":{"body":206,"breadcrumbs":7,"title":2},"73":{"body":329,"breadcrumbs":7,"title":2},"74":{"body":29,"breadcrumbs":7,"title":2},"75":{"body":99,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":38,"breadcrumbs":6,"title":1},"78":{"body":0,"breadcrumbs":5,"title":1},"79":{"body":9,"breadcrumbs":5,"title":1},"8":{"body":19,"breadcrumbs":7,"title":1},"80":{"body":25,"breadcrumbs":5,"title":1},"81":{"body":38,"breadcrumbs":5,"title":1},"82":{"body":15,"breadcrumbs":5,"title":1},"83":{"body":27,"breadcrumbs":7,"title":3},"84":{"body":43,"breadcrumbs":6,"title":2},"85":{"body":37,"breadcrumbs":6,"title":2},"86":{"body":13,"breadcrumbs":6,"title":2},"87":{"body":25,"breadcrumbs":7,"title":3},"88":{"body":4,"breadcrumbs":5,"title":1},"89":{"body":58,"breadcrumbs":9,"title":5},"9":{"body":30,"breadcrumbs":7,"title":1},"90":{"body":122,"breadcrumbs":7,"title":3},"91":{"body":49,"breadcrumbs":9,"title":5},"92":{"body":620,"breadcrumbs":8,"title":4},"93":{"body":4,"breadcrumbs":8,"title":4},"94":{"body":52,"breadcrumbs":7,"title":3},"95":{"body":79,"breadcrumbs":7,"title":3},"96":{"body":4,"breadcrumbs":5,"title":1},"97":{"body":3,"breadcrumbs":5,"title":1},"98":{"body":33,"breadcrumbs":5,"title":1},"99":{"body":0,"breadcrumbs":5,"title":1}},"docs":{"0":{"body":"Draft The Catalyst-Core Documentation is currently undergoing review and re-write. This documentation is published AS-IS. There is no guarantee that it is correct with regards to the current implementation. The source of all truth with regards to the implementation is the source code. Patches to improve the documentation are very welcome. See Contributing . Found a bug? Edit this page on GitHub.","breadcrumbs":"Prologue » Prologue","id":"0","title":"Prologue"},"1":{"body":"","breadcrumbs":"Introduction » Introduction","id":"1","title":"Introduction"},"10":{"body":"The blockchain is the general set of rules and the blocks that are periodically created. Some of the rules and settings, can be changed dynamically in the system by updates, while some other are hardcoded in the genesis block (first block of the blockchain). +-------+ +-------+ |Genesis+<-----+Block 1+<--- .... |Header | |Header | +---+---+ +---+---+ | | +---v---+ +---v---+ |Genesis| |Block 1| |Content| |Content| +-------+ +-------+","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain","id":"10","title":"Blockchain"},"100":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin or equivantely cat genesis.yaml | jcli genesis encode > block-0.bin","breadcrumbs":"Core Ledger » jcli » Genesis » Encode a genesis file","id":"100","title":"Encode a genesis file"},"101":{"body":"jcli genesis hash --input block-0.bin Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Genesis » Get the hash of an encoded genesis file","id":"101","title":"Get the hash of an encoded genesis file"},"102":{"body":"There are multiple type of key for multiple use cases. type usage ed25519 Signing algorithm for Ed25519 algorithm ed25519-bip32 Related to the HDWallet, Ed25519 Extended with chain code for derivation ed25519-extended Related to Ed25519Bip32 without the chain code sum-ed25519-12 For stake pool, necessary for the KES ristretto-group2-hash-dh For stake pool, necessary for the VRF There is a command line parameter to generate this keys: $ jcli key generate --type=Ed25519\ned25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt and to extract the associated public key: $ echo ed25519_sk1cvac48ddf2rpk9na94nv2zqhj74j0j8a99q33gsqdvalkrz6ar9srnhvmt | jcli key to-public\ned25519_pk1z2ffur59cq7t806nc9y2g64wa60pg5m6e9cmrhxz9phppaxk5d4sn8nsqg","breadcrumbs":"Core Ledger » jcli » cryptographic keys » cryptographic keys","id":"102","title":"cryptographic keys"},"103":{"body":"Sign data with private key. Supported key formats are: ed25519, ed25519-bip32, ed25519-extended and sumed25519_12. jcli key sign The options are –secret-key - path to file with bech32-encoded secret key -o, –output - path to file to write signature into, if no value is passed, standard output will be used - path to file with data to sign, if no value is passed, standard input will be used","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Signing data","id":"103","title":"Signing data"},"104":{"body":"Verify signed data with public key. Supported key formats are: ed25519, ed25519bip32 and sumed25519_12. jcli key verify The options are –public-key - path to file with bech32-encoded public key –signature - path to file with signature - path to file with data to sign, if no value is passed, standard input will be used Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » cryptographic keys » Verifying signed data","id":"104","title":"Verifying signed data"},"105":{"body":"Jormungandr comes with a CLI client for manual communication with nodes over HTTP.","breadcrumbs":"Core Ledger » jcli » REST » REST","id":"105","title":"REST"},"106":{"body":"Many CLI commands have common arguments: -h or --host - Node API address. Must always have http:// or https:// prefix and always ends with the /api. E.g. -h http://127.0.0.1:8081/api, --host https://node.com:8443/cardano/api. --debug - Print additional debug information to stderr. The output format is intentionally undocumented and unstable --output-format - Format of output data. Possible values: json, yaml, default yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ .","breadcrumbs":"Core Ledger » jcli » REST » Conventions","id":"106","title":"Conventions"},"107":{"body":"Fetches node stats jcli rest v0 node stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# Number of blocks received by node\nblockRecvCnt: 1102\n# Size in bytes of all transactions in last block\nlastBlockContentSize: 484\n# The Epoch and slot Number of the block (optional)\nlastBlockDate: \"20.29\"\n# Sum of all fee values in all transactions in last block\nlastBlockFees: 534\n# The block hash, it's unique identifier in the blockchain (optional)\nlastBlockHash: b9597b45a402451540e6aabb58f2ee4d65c67953b338e04c52c00aa0886bd1f0\n# The block number, in order, since the block0 (optional)\nlastBlockHeight: 202901\n# Sum of all input values in all transactions in last block\nlastBlockSum: 51604\n# The time slot of the tip block\nlastBlockTime: \"2020-01-30T22:37:46+00:00\"\n# Number of transactions in last block\nlastBlockTx: 2\n# The time at which we received the last block, not necessarily the current tip block (optional)\nlastReceivedBlockTime: \"2020-01-30T22:37:59+00:00\"\n# 24 bytes encoded in hexadecimal Node ID\nnodeId: \"ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d\"\n# Number of nodes that are available for p2p discovery and events propagation\npeerAvailableCnt: 321\n# Number of nodes that have been quarantined by our node\npeerQuarantinedCnt: 123\n# Total number of nodes\npeerTotalCnt: 444\n# Number of nodes that are connected to ours but that are not publicly reachable\npeerUnreachableCnt: 0\n# State of the node\nstate: Running\n# Number of transactions received by node\ntxRecvCnt: 5440\n# Node uptime in seconds\nuptime: 20032\n# Node app version\nversion: jormungandr 0.8.9-30d20d2e","breadcrumbs":"Core Ledger » jcli » REST » Node stats","id":"107","title":"Node stats"},"108":{"body":"Fetches UTxO details jcli rest v0 utxo get - hex-encoded ID of the transaction fragment - index of the transaction output The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n# UTxO owner address\naddress: ca1svs0mwkfky9htpam576mc93mee5709khre8dgnqslj6y3p5f77s5gpgv02w\n# UTxO value\nvalue: 10000","breadcrumbs":"Core Ledger » jcli » REST » Get UTxO","id":"108","title":"Get UTxO"},"109":{"body":"Posts a signed, hex-encoded transaction jcli rest v0 message post The options are -h - see conventions –debug - see conventions -f –file - File containing hex-encoded transaction. If not provided, transaction will be read from stdin. Fragment Id is printed on success (which can help finding transaction status using get message log command) 50f21ac6bd3f57f231c4bf9c5fff7c45e2529c4dffed68f92410dbf7647541f1","breadcrumbs":"Core Ledger » jcli » REST » Post transaction","id":"109","title":"Post transaction"},"11":{"body":"The node currently support the following consensus protocol: Ouroboros BFT (OBFT) Ouroboros Genesis-Praos Ouroboros BFT is a simple Byzantine Fault Tolerant (BFT) protocol where the block makers is a known list of leaders that successively create a block and broadcast it on the network. Ouroboros Genesis Praos is a proof of stake (PoS) protocol where the block maker is made of a lottery where each stake pool has a chance proportional to their stake to be elected to create a block. Each lottery draw is private to each stake pool, so that the overall network doesn’t know in advance who can or cannot create blocks. In Genesis-Praos slot time duration is constant, however the frequency of creating blocks is not stable, since the creation of blocks is a probability that is linked to the stake and consensus_genesis_praos_active_slot_coeff. Note : In Genesis-Praos, if there is no stake in the system, no blocks will be created anymore starting with the next epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Consensus","id":"11","title":"Consensus"},"110":{"body":"Get the node’s logs on the message pool. This will provide information on pending transaction, rejected transaction and or when a transaction has been added in a block jcli rest v0 message logs The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- fragment_id: 7db6f91f3c92c0aef7b3dd497e9ea275229d2ab4dba6a1b30ce6b32db9c9c3b2 # hex-encoded fragment ID last_updated_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of last fragment status change received_at: 2019-06-02T16:20:26.201000000Z # RFC3339 timestamp of fragment receivement received_from: Network, # how fragment was received status: Pending, # fragment status received_from can be one of: received_from: Rest # fragment was received from node's REST API received_from: Network # fragment was received from the network status can be one of: status: Pending # fragment is pending status: Rejected: # fragment was rejected reason: reason of rejection # cause status: # fragment was included in a block InABlock: date: \"6637.3\" # block epoch and slot ID formed as . block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\"","breadcrumbs":"Core Ledger » jcli » REST » Get message log","id":"110","title":"Get message log"},"111":{"body":"Retrieves a hex-encoded ID of the blockchain tip jcli rest v0 tip get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Blockchain tip","id":"111","title":"Blockchain tip"},"112":{"body":"Retrieves a hex-encoded block with given ID jcli rest v0 block get - hex-encoded block ID The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Get block","id":"112","title":"Get block"},"113":{"body":"Retrieves a list of hex-encoded IDs of descendants of block with given ID. Every list element is in separate line. The IDs are sorted from closest to farthest. jcli rest v0 block next-id get - hex-encoded block ID The options are -h - see conventions –debug - see conventions -c –count - Maximum number of IDs, must be between 1 and 100, default 1","breadcrumbs":"Core Ledger » jcli » REST » Get next block ID","id":"113","title":"Get next block ID"},"114":{"body":"Get account state jcli rest v0 account get - ID of an account, bech32-encoded The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ncounter: 1\ndelegation: c780f14f9782770014d8bcd514b1bc664653d15f73a7158254730c6e1aa9f356\nvalue: 990 value is the current balance of the account; counter is the number of transactions performed using this account this is useful to know when signing new transactions; delegation is the Stake Pool Identifier the account is delegating to. it is possible this value is not set if there is no delegation certificate sent associated to this account.","breadcrumbs":"Core Ledger » jcli » REST » Get account state","id":"114","title":"Get account state"},"115":{"body":"Fetches node settings jcli rest v0 settings get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\nblock0Hash: 8d94ecfcc9a566f492e6335858db645691f628b012bed4ac2b1338b5690355a7 # block 0 hash of\nblock0Time: \"2019-07-09T12:32:51+00:00\" # block 0 creation time of\nblockContentMaxSize: 102400 # the block content's max size in bytes\nconsensusVersion: bft # currently used consensus\ncurrSlotStartTime: \"2019-07-09T12:55:11+00:00\" # current slot start time\nepochStabilityDepth: 102400 # the depth, number of blocks, to which we consider the blockchain to # be stable and prevent rollback beyond that depth\nfees: # transaction fee configuration certificate: 4 # fee per certificate coefficient: 1 # fee per every input and output constant: 2 # fee per transaction per_certificate_fees: # fee per certificate operations, all zero if this object absent (optional) certificate_pool_registration: 5 # fee per pool registration, zero if absent (optional) certificate_stake_delegation: 15 # fee per stake delegation, zero if absent (optional) certificate_owner_stake_delegation: 2 # fee per pool owner stake delegation, zero if absent (optional)\nrewardParams: # parameters for rewards calculation compoundingRatio: # speed at which reward is reduced. Expressed as numerator/denominator denominator: 1024 numerator: 1 compoundingType: Linear # reward reduction algorithm. Possible values: \"Linear\" and \"Halvening\" epochRate: 100 # number of epochs between reward reductions epochStart: 0 # epoch when rewarding starts initialValue: 10000 # initial reward\nslotDuration: 5 # slot duration in seconds\nslotsPerEpoch: 720 # number of slots per epoch\ntreasuryTax: # tax from reward that goes to pot fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)","breadcrumbs":"Core Ledger » jcli » REST » Node settings","id":"115","title":"Node settings"},"116":{"body":"Node shutdown jcli rest v0 shutdown get The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Node shutdown","id":"116","title":"Node shutdown"},"117":{"body":"Fetches list of leader IDs jcli rest v0 leaders get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 1 # list of leader IDs\n- 2","breadcrumbs":"Core Ledger » jcli » REST » Get leaders","id":"117","title":"Get leaders"},"118":{"body":"Register new leader and get its ID jcli rest v0 leaders post The options are -h - see conventions –debug - see conventions –output-format - see conventions -f, –file - File containing YAML with leader secret. It must have the same format as secret YAML passed to Jormungandr as –secret. If not provided, YAML will be read from stdin. On success created leader ID is printed 3","breadcrumbs":"Core Ledger » jcli » REST » Register leader","id":"118","title":"Register leader"},"119":{"body":"Delete leader with given ID jcli rest v0 leaders delete - ID of deleted leader The options are -h - see conventions –debug - see conventions","breadcrumbs":"Core Ledger » jcli » REST » Delete leader","id":"119","title":"Delete leader"},"12":{"body":"The leadership represent in abstract term, who are the overall leaders of the system and allow each individual node to check that specific blocks are lawfully created in the system. The leadership is re-evaluated at each new epoch and is constant for the duration of an epoch.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leadership","id":"12","title":"Leadership"},"120":{"body":"Fetches leadership logs jcli rest v0 leaders logs get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- created_at_time: \"2019-08-19T12:25:00.417263555+00:00\" enclave_leader_id: 1 finished_at_time: \"2019-08-19T23:19:05.010113333+00:00\" scheduled_at_date: \"0.3923\" scheduled_at_time: \"2019-08-19T23:18:35+00:00\" wake_at_time: \"2019-08-19T23:18:35.001254555+00:00\" status: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 Different value for the status: # meaning the action is still pending to happen\nstatus: Pending # meaning the action successfully create the given block with the given hash and parent\nstatus: Block: chain_length: 201018 block: d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174 parent: cc72d4ca957b03d7c795596b7fd7b1ff09c649c3e2877c508c0466abc8604832 # meaning the event has failed for some reasons\nstatus: Rejected: reason: \"Missed the deadline to compute the schedule\"","breadcrumbs":"Core Ledger » jcli » REST » Get leadership logs","id":"120","title":"Get leadership logs"},"121":{"body":"Fetches list of stake pool IDs jcli rest v0 stake-pools get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # list of stake pool IDs\n- 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615","breadcrumbs":"Core Ledger » jcli » REST » Get stake pools","id":"121","title":"Get stake pools"},"122":{"body":"Fetches stake information jcli rest v0 stake get [] - Epoch to get the stake distribution from. (optional) The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success jcli rest v0 stake get - stake distribution from the current epoch ---\nepoch: 228 # Epoch of last block\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool jcli rest v0 stake get 10 - stake distribution from a specific epoch (epoch 10 in this example) ---\nepoch: 10 # Epoch specified in the request\nstake: dangling: 0 # Total value stored in accounts, but assigned to nonexistent pools pools: - - 5cf03f333f37eb7b987dbc9017b8a928287a3d77d086cd93cd9ad05bcba7e60f # stake pool ID - 1000000000000 # staked value - - 3815602c096fcbb91072f419c296c3dfe1f730e0f446a9bd2553145688e75615 # stake pool ID - 1000000000000 # staked value unassigned: 0 # Total value stored in accounts, but not assigned to any pool","breadcrumbs":"Core Ledger » jcli » REST » Get stake distribution","id":"122","title":"Get stake distribution"},"123":{"body":"Fetches network stats jcli rest v0 network stats get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- # node address (optional) addr: \"3.124.55.91:3000\" # hex-encoded node ID nodeId: 0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20 # timestamp of when the connection was established establishedAt: \"2019-10-14T06:24:12.010231281+00:00\" # timestamp of last time block was received from node if ever (optional) lastBlockReceived: \"2019-10-14T00:45:57.419496113+00:00\" # timestamp of last time fragment was received from node if ever (optional) lastFragmentReceived: \"2019-10-14T00:45:58.419496150+00:00\" # timestamp of last time gossip was received from node if ever (optional) lastGossipReceived: \"2019-10-14T00:45:59.419496188+00:00\"","breadcrumbs":"Core Ledger » jcli » REST » Network stats","id":"123","title":"Network stats"},"124":{"body":"Fetches stake pool details jcli rest v0 stake-pool get - hex-encoded pool ID The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\ntax: # pool reward fixed: 5 # what get subtracted as fixed value ratio: # ratio of tax after fixed amount is subtracted. Expressed as numerator/denominator numerator: 1 denominator: 10000 max: 100 # limit of tax (optional)\ntotal_stake: 2000000000000 # total stake pool value\n# bech32-encoded stake pool KES key\nkesPublicKey: kes25519-12-pk1q7susucqwje0lpetqzjgzncgcrjzx7e2guh900qszdjskkeyqpusf3p39r\n# bech32-encoded stake pool VRF key\nvrfPublicKey: vrf_pk1rcm4qm3q9dtwq22x9a4avnan7a3k987zvepuxwekzj3uyu6a8v0s6sdy0l","breadcrumbs":"Core Ledger » jcli » REST » Get stake pool details","id":"124","title":"Get stake pool details"},"125":{"body":"Get the rewards history of a given epoch . jcli rest v0 rewards epoch get - epoch number to get the rewards history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards epoch get 82 -h [ { \"epoch\": 82, // the epoch number to collect rewards info from (rewards are from epoch 81) \"drawn\": 3835616440000, // Total Drawn from reward escrow pot for the epoch \"fees\": 1828810000, // Fees contributed into the pot the epoch \"treasury\": 462179124139, // Value added to the treasury \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1683091391, // pool's owned rewards from taxes 32665712521 // distributed rewards to delegators ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 47706672, 906426770 ], }, \"accounts\": { \"ed25519_pk1qqq6r7r7medu2kdpvdra5kwh8uz9frvftm9lf25shm7ygx9ayvss0nqke9\": 427549785, // Amount added to each account \"ed25519_pk1qqymlwehsztpzhy2k4szkp7j0xk0ra35jyxcpgr9p9q4ngvzzc5q4sh2gm\": 24399360, \"ed25519_pk1qq9h62jv6a0mz36xgecjrz9tm8z6ay3vj4d64ashxkgxcyhjewwsvgvelj\": 22449169, \"ed25519_pk1qq9l2qrqazk5fp4kt2kvjtsjc32g0ud888um8k2pvms0cw2r0uzsute83u\": 1787992, \"ed25519_pk1qqx6h559ee7pa67dm255d0meekt6dmq6857x302wdwrhzv47z9hqucdnt2\": 369024, } }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for a specific epoch","id":"125","title":"Get rewards history for a specific epoch"},"126":{"body":"Get the rewards history of the length last epoch(s) from tip. jcli rest v0 rewards history get - number of epochs, starting from the last epoch from tip, to get the reward history for. The options are -h - see conventions –debug - see conventions jcli rest v0 rewards history get 2 -h [ { \"epoch\": 93, \"drawn\": 3835616440000, \"fees\": 641300000, \"treasury\": 467151470296, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 1121750881, 21771124247 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 429241408, 8155586765 ], \"01bd272cede02d0b0c9cd47b16e5356ab3fb2330dd9d1e972ab5494365309d2a\": [ 1691506850, 32829041110 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 33311805, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 15809, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 10007789, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 545094806, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 4208232, }, }, { \"epoch\": 92, \"drawn\": 3835616440000, \"fees\": 620400000, \"treasury\": 480849578351, \"stake_pools\": { \"0087011b9c626759f19d9d0315a9b42492ba497438c12efc026d664c9f324ecb\": [ 979164601, 19003786459 ], \"0105449dd66524111349ef677d1ebc25247a5ba2d094913f52aa4db265eac03a\": [ 26977274, 972170279 ], \"014bb0d84f40900f6dd85835395bc38da3ab81435d1e6ee27d419d6eeaf7d16a\": [ 299744265, 5695141053 ], }, \"accounts\": { \"ed25519_pk1002kje4l8j7kvsseyauusk3s7nzef4wcvvafltjmg0rkzr6qccyqg064kz\": 40581616, \"ed25519_pk100549kxqn8tnzfzr5ndu0wx7pp2y2ck28mnykq03m2z5qcwkvazqx9fp0h\": 49156, \"ed25519_pk10054y058qfn5wnazalnkax0mthg06ucq87nn9320rphtye5ca0xszjcelk\": 12306084, \"ed25519_pk10069dsunppwttl4qtsfnyhjnqwkunuwxjxlandl2fnpwpuznf5pqmg3twe\": 142737175, \"ed25519_pk1009sfpljfgx30z70l3n63gj7w9vp3epugmd3vn62fyr07ut9pfwqjp7f8h\": 3932910, }, }\n]","breadcrumbs":"Core Ledger » jcli » REST » Get rewards history for some epochs","id":"126","title":"Get rewards history for some epochs"},"127":{"body":"Get the list of voting committee members. jcli rest v0 vote active committees get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- 7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19 # list of members\n- f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db","breadcrumbs":"Core Ledger » jcli » REST » Get voting committee members","id":"127","title":"Get voting committee members"},"128":{"body":"Get the list of active voting plans and proposals. jcli rest v0 vote active plans get The options are -h - see conventions –debug - see conventions –output-format - see conventions YAML printed on success ---\n- committee_end: epoch: 10 slot_id: 0 proposals: - external_id: adb92757155d09e7f92c9f100866a92dddd35abd2a789a44ae19ab9a1dbc3280 options: OneOf: max_value: 3 - external_id: 6778d37161c3962fe62c9fa8a31a55bccf6ec2d1ea254a467d8cd994709fc404 options: OneOf: max_value: 3 vote_end: epoch: 5 slot_id: 0 vote_start: epoch: 1 slot_id: 0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » REST » Get active voting plans and proposals","id":"128","title":"Get active voting plans and proposals"},"129":{"body":"Tooling for offline transaction creation and signing. jcli transaction Those familiar with cardano-cli transaction builder will see resemblance in jcli transaction. There is a couple of commands that can be used to: prepare a transaction: new create a new empty transaction; add-input add-account add-output finalize the transaction for signing: create witnesses and add the witnesses: make-witness add-witness seal the transaction, ready to send to the blockchain auth the transaction, if it contains a certificate There are also functions to help decode and display the content information of a transaction: info displays summary of transaction being constructed data-for-witness get the data to sign from a given transaction fragment-id get the Fragment ID from a transaction in sealed state to-message to get the hexadecimal encoded message, ready to send with cli rest message DEPRECATED : id get the data to sign from a given transaction (use data-for-witness instead)","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction","id":"129","title":"Transaction"},"13":{"body":"Leader are an abstraction related to the specific actor that have the ability to create block; In OBFT mode, the leader just the owner of a cryptographic key, whereas in Genesis-Praos mode, the leader is a stake pool.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Leader","id":"13","title":"Leader"},"130":{"body":"On every stage of building a transaction user can display its summary jcli transaction info The options are: --prefix - set the address prefix to use when displaying the addresses (default: ca) --fee-certificate - fee per certificate (default: 0) --fee-coefficient - fee per every input and output (default: 0) --fee-constant - fee per transaction (default: 0) --fee-owner-stake-delegation - fee per owner stake delegation (default: fee-certificate) --fee-pool-registration - fee per pool registration (default: fee-certificate) --fee-stake-delegation - fee per stake delegation (default: fee-certificate) --fee-vote-cast - fee per vote cast --fee-vote-plan - fee per vote plan --output-format - Format of output data. Possible values: json, yaml. Any other value is treated as a custom format using values from output data structure. Syntax is Go text template: https://golang.org/pkg/text/template/ . (default: yaml) --output - write the info in the given file or print it to the standard output --staging - place where the transaction is going to be saved during its staging phase. If a file is given, the transaction will be read from this file and modification will be written into this same file. If no file is given, the transaction will be read from the standard input and will be rendered in the standard output. YAML printed on success ---\nbalance: 40 # transaction balance or how much input is not spent\nfee: 60 # total fee for transaction\ninput: 200 # total input of transaction\ninputs: # list of transaction inputs, each can be of either \"utxo\" or \"account\" kind - index: 4 # index of transaction output kind: utxo # constant value, signals that UTxO is used # hex-encoded ID of transaction txid: 543326b2739356ab6d14624a536ca696f1020498b36456b7fdfe8344c084bfcf value: 130 # value of transaction output - # hex-encoded account address account: 3fd45a64ae5a3b9c35e37114baa099b8b01285f7d74b371597af22d5ff393d9f kind: account # constant value, signals that account is used value: 70 # value taken from account\nnum_inputs: 1 # total number of inputs of transaction\nnum_outputs: 1 # total number of outputs of transaction\nnum_witnesses: 1 # total number of witnesses of transaction\noutput: 100 # total output of transaction\noutputs: # list of transaction outputs - # bech32-encoded address address: ca1swedukl830v26m8hl7e5dzrjp77yctuz79a68r8jl2l79qnpu3uwz0kg8az value: 100 # value sent to address # hex-encoded transaction hash, when transaction is complete, it's also its ID\nsign_data_hash: 26be0b8bd7e34efffb769864f00d7c4aab968760f663a7e0b3ce213c4b21651b\nstatus: sealed # transaction status, can be \"balancing\", \"finalizing\", \"sealed\" or \"authed\"","breadcrumbs":"Core Ledger » jcli » Transaction » Transaction info","id":"130","title":"Transaction info"},"131":{"body":"The following example focuses on using an utxo as input, the few differences when transfering from an account will be pointed out when necessary. Also, the simplified make-transaction command in jcli covers all this process. For more information run: jcli transaction make-transaction --help Let’s use the following utxo as input and transfer 50 lovelaces to the destination address","breadcrumbs":"Core Ledger » jcli » Transaction » Examples","id":"131","title":"Examples"},"132":{"body":"Field Value UTXO’s transaction ID 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c UTXO’s output index 0 associated address ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu associated value 100","breadcrumbs":"Core Ledger » jcli » Transaction » Input utxo","id":"132","title":"Input utxo"},"133":{"body":"address : ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6","breadcrumbs":"Core Ledger » jcli » Transaction » Destination address","id":"133","title":"Destination address"},"134":{"body":"jcli transaction new --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Create a staging area","id":"134","title":"Create a staging area"},"135":{"body":"For the input, we need to reference the utxo with the UTXO’s transaction ID and UTXO’S output index fields. We also need to specify how many coins there are with the associated value field.","breadcrumbs":"Core Ledger » jcli » Transaction » Add input","id":"135","title":"Add input"},"136":{"body":"jcli transaction add-input 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c 0 100 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - UTXO address as Input","id":"136","title":"Example - UTXO address as Input"},"137":{"body":"If the input is an account, the command is slightly different jcli transaction add-account account_address account_funds --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Example - Account address as Input","id":"137","title":"Example - Account address as Input"},"138":{"body":"For the output, we need the address we want to transfer to, and the amount. jcli transaction add-output ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 50 --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add output","id":"138","title":"Add output"},"139":{"body":"We want to get the change in the same address that we are sending from (the associated address of the utxo). We also specify how to compute the fees. You can leave out the --fee-constant 5 --fee-coefficient 2 part if those are both 0. jcli transaction finalize ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu --fee-constant 5 \\ --fee-coefficient 2 --staging tx Now, if you run jcli transaction info --fee-constant 5 --fee-coefficient 2 --staging tx You should see something like this ---\nbalance: 0\nfee: 11\ninput: 100\ninputs: - index: 0 kind: utxo txid: 55762218e5737603e6d27d36c8aacf8fcd16406e820361a8ac65c7dc663f6d1c value: 100\nnum_inputs: 1\nnum_outputs: 2\nnum_witnesses: 0\noutput: 89\noutputs: - address: ca1qvnr5pvt9e5p009strshxndrsx5etcentslp2rwj6csm8sfk24a2wlqtdj6 value: 50 - address: ca1q09u0nxmnfg7af8ycuygx57p5xgzmnmgtaeer9xun7hly6mlgt3pjyknplu value: 39\nsign_data_hash: 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273\nstatus: finalizing","breadcrumbs":"Core Ledger » jcli » Transaction » Add fee and change address","id":"139","title":"Add fee and change address"},"14":{"body":"Transaction forms the cornerstone of the blockchain, and is one type of fragment and also the most frequent one. Transaction is composed of inputs and outputs; On one side, the inputs represent coins being spent, and on the other side the outputs represent coins being received. Inputs Alice (80$) Bob (20$) \\ / \\ / ----------- 100$ --------- / \\ Outputs Charlie (50$) Dan (50$) Transaction have fees that are defined by the blockchain settings and the following invariant hold: \\( \\sum Inputs = \\sum Outputs + fees \\) Transaction need to be authorized by each of the inputs in the transaction by their respective witness. In the most basic case, a witness is a cryptographic signature, but depending on the type of input can the type of witness vary.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Transaction","id":"14","title":"Transaction"},"140":{"body":"","breadcrumbs":"Core Ledger » jcli » Transaction » Sign the transaction","id":"140","title":"Sign the transaction"},"141":{"body":"For signing the transaction, you need: the hash of the genesis block of the network you are connected to. the private key associated with the input address (the one that’s in the utxos). the hash of the transaction, that can be retrieved in two ways: sign_data_hash value from jcli transaction info --staging tx or jcli transaction data-for-witness --staging tx The genesis’ hash is needed for ensuring that the transaction: cannot be re-used in another blockchain and for security concerns on offline transaction signing, as we are signing the transaction for the specific blockchain started by this block0 hash. First we need to get the hash of the transaction we are going to sign. jcli transaction data-for-witness --staging tx You should see something like this (the value may be different since it depends on the input/output data) 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 The following command takes the private key in the key.prv file and creates a witness in a file named witness in the current directory. jcli transaction make-witness --genesis-block-hash abcdef987654321... \\ --type utxo 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv Account input When using an account as input, the command takes account as the type and an additional parameter: --account-spending-counter, that should be increased every time the account is used as input. e.g. jcli transaction make-witness --genesis-block-hash abcdef987654321... --type account --account-spending-counter 0 \\ 0df39a87d3f18a188b40ba8c203f85f37af665df229fb4821e477f6998864273 witness key.prv","breadcrumbs":"Core Ledger » jcli » Transaction » Make witness","id":"141","title":"Make witness"},"142":{"body":"jcli transaction add-witness witness --staging tx","breadcrumbs":"Core Ledger » jcli » Transaction » Add witness","id":"142","title":"Add witness"},"143":{"body":"jcli transaction seal --staging tx jcli transaction to-message --staging tx > txmsg Send it using the rest api jcli rest v0 message post -f txmsg --host http://127.0.0.1:8443/api You should get some data back referring to the TransactionID (also known as FragmentID) d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2","breadcrumbs":"Core Ledger » jcli » Transaction » Send the transaction","id":"143","title":"Send the transaction"},"144":{"body":"You can check if the transaction was accepted by checking the node logs, for example, if the transaction is accepted jcli rest v0 message logs -h http://127.0.0.1:8443/api ---\n- fragment_id: d6ef0b2148a51ed64531efc17978a527fd2d2584da1e344a35ad12bf5460a7e2 last_updated_at: \"2019-06-11T15:38:17.070162114Z\" received_at: \"2019-06-11T15:37:09.469101162Z\" received_from: Rest status: InABlock: date: \"4.707\" block: \"d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174\" Where the InABlock status means that the transaction was accepted in the block with date “4.707” and for block d9040ca57e513a36ecd3bb54207dfcd10682200929cad6ada46b521417964174. The status here could also be: Pending : if the transaction is received and is pending being added in the blockchain (or rejected). or Rejected : with an attached message of the reason the transaction was rejected. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Transaction » Checking if the transaction was accepted","id":"144","title":"Checking if the transaction was accepted"},"145":{"body":"Jormungandr supports decentralized voting with privacy features. The voting process is controlled by a committee whose private keys can be used to decrypt and certify the tally.","breadcrumbs":"Core Ledger » jcli » Voting » Voting","id":"145","title":"Voting"},"146":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Creating committee keys","id":"146","title":"Creating committee keys"},"147":{"body":"Please refer to jcli votes committee --help for help with the committee related cli operations and specification of arguments. In this example we will be using 3 kind of keys for the private vote and tallying. In order: Committee communication key jcli votes committee communication-key generate > ./comm.sk We can get its public representation with: jcli votes committee communication-key to-public --input ./comm.sk > ./comm.pk Committee member key jcli votes committee member-key generate --threshold 3 --crs \"$crs\" --index 0 --keys pk1 pk2 pk3 > ./member.sk Where pkX are each of the committee communication public keys in bech32 format. The order of the keys shall be the same for every member invoking the command, and the --index parameter provides the 0-based index of the member this key is generated for. Note that all committee members shall use the same CRS . We can also easily get its public representation as before: jcli votes committee member-key to-public --input ./member.sk ./member.pk Election public key This key ( public ) is the key every vote should be encrypted with. jcli votes election-key --keys mpk1 mpk2 mpk3 > ./vote.pk Notice that we can always rebuild this key with the committee member public keys found within the voteplan certificate . jcli rest v0 vote active plans > voteplan.json","breadcrumbs":"Core Ledger » jcli » Voting » Private","id":"147","title":"Private"},"148":{"body":"We need to provide a vote plan definition file to generate a new voteplan certificate. That file should be a yaml (or json) with the following format: { \"payload_type\": \"private\", \"vote_start\": { \"epoch\": 1, \"slot_id\": 0 }, \"vote_end\": { \"epoch\": 3, \"slot_id\": 0 }, \"committee_end\": { \"epoch\": 6, \"slot_id\": 0 }, \"proposals\": [ { \"external_id\": \"d7fa4e00e408751319c3bdb84e95fd0dcffb81107a2561e691c33c1ae635c2cd\", \"options\": 3, \"action\": \"off_chain\" }, ... ], \"committee_member_public_keys\": [ \"pk....\", ]\n} Where: payload_type is either public or private commitee_public_keys is only needed for private voting, can be empty for public. Then, we can generate the voteplan certificate with: jcli certificate new vote-plan voteplan_def.json --output voteplan.certificate","breadcrumbs":"Core Ledger » jcli » Voting » Creating a vote plan","id":"148","title":"Creating a vote plan"},"149":{"body":"To generate a vote cast transaction: firstly you need to generate vote-cast certificate following this instructions . Storing it into the ’vote-cast.certificate` now you can generate a transaction following this intructions . Note that a valid vote cast transaction MUST have only: one input with the corresponding account of the voter zero outputs 1 corresponding witness. Example (voter.sk contains a private key of the voter): genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\nvoter_addr=$(jcli address account $(jcli key to-public < voter.sk))\nvoter_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-cast public --choice 0 --proposal-index 0 --vote-plan-id \"$vote_plan_id\" --output vote-cast.certificate\njcli transaction new --staging vote-cast.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-cast.staging\njcli transaction add-certificate $(< vote-cast.certificate) --staging vote-cast.staging\njcli transaction finalize --staging vote-cast.staging\njcli transaction data-for-witness --staging vote-cast.staging > vote-cast.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter\n\"$voter_addr_counter\" $(< vote-cast.witness-data) vote-cast.witness committee.sk\njcli transaction seal --staging vote-cast.staging\njcli transaction to-message --staging vote-cast.staging > vote-cast.fragment\njcli rest v0 message post --file vote-cast.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Casting votes","id":"149","title":"Casting votes"},"15":{"body":"The blockchain has two methods of accounting which are interoperable: Unspent Transaction Output (UTXO) Accounts UTXO behaves like cash/notes, and work like fixed denomination ticket that are cumulated. This is the accounting model found in Bitcoin. A UTXO is uniquely reference by its transaction ID and its index. Accounts behaves like a bank account, and are simpler to use since exact amount can be used. This is the accounting model found in Ethereum. An account is uniquely identified by its public key. Each inputs could refer arbitrarily to an account or a UTXO, and similarly each outputs could refer to an account or represent a new UTXO. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Accounting","id":"15","title":"Accounting"},"150":{"body":"","breadcrumbs":"Core Ledger » jcli » Voting » Tallying","id":"150","title":"Tallying"},"151":{"body":"To tally public votes, a single committee member is sufficient. In the example below, the file committee.sk contains the committee member’s private key in bech32 format, and block0.bin contains the genesis block of the voting chain. genesis_block_hash=$(jcli genesis hash < block0.bin)\nvote_plan_id=$(jcli rest v0 vote active plans get --output-format json|jq '.[0].id')\ncommittee_addr=$(jcli address account $(jcli key to-public < committee.sk))\ncommittee_addr_counter=$(jcli rest v0 account get \"$committee_addr\" --output-format json|jq .counter)\njcli certificate new vote-tally --vote-plan-id \"$vote_plan_id\" --output vote-tally.certificate\njcli transaction new --staging vote-tally.staging\njcli transaction add-account \"$committee_addr\" 0 --staging vote-tally.staging\njcli transaction add-certificate $(< vote-tally.certificate) --staging vote-tally.staging\njcli transaction finalize --staging vote-tally.staging\njcli transaction data-for-witness --staging vote-tally.staging > vote-tally.witness-data\njcli transaction make-witness --genesis-block-hash \"$genesis_block_hash\" --type account --account-spending-counter \\ \"$committee_addr_counter\" $(< vote-tally.witness-data) vote-tally.witness committee.sk\njcli transaction add-witness --staging vote-tally.staging vote-tally.witness\njcli transaction seal --staging vote-tally.staging\njcli transaction auth --staging vote-tally.staging --key committee.sk\njcli transaction to-message --staging vote-tally.staging > vote-tally.fragment\njcli rest v0 message post --file vote-tally.fragment","breadcrumbs":"Core Ledger » jcli » Voting » Public vote plan","id":"151","title":"Public vote plan"},"152":{"body":"To tally private votes, all committee members are needed. The process is similar to the public one, but we need to issue different certificates. First, we need to retrieve vote plans info: jcli rest v0 vote active plans > active_plans.json If there is more than one vote plan in the file, we also need to provide the id of the vote plan we are interested in. We can get the id of the first vote plan with: ...\nvote_plan_id=$(cat active_plans.json |jq '.[0].id')\n... Each committee member needs to generate their shares for the vote plan, which we will use later to decrypt the tally. jcli votes tally decryption-shares --vote-plan active_plans.json --vote-plan-id $\"vote_plan_id\" --key member.sk --output-format json Then, the committee members need to exchange their shares (only one full set of shares is needed). Once all shares are available, we need to merge them in a single file with the following command (needed even if there is only one set of shares): jcli votes tally merge-shares share_file1 share_file2 ... > merged_shares.json With the merged shares file, we are finally able to process the final tally result as follows: jcli votes tally decrypt-results \\\n--vote-plan active_plans.json \\\n--vote-plan-id $\"vote_plan_id\" \\\n--shares merged_shares.json \\\n--threshold number_of_committee_members \\\n--output-format json > result.json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Voting » Private vote plan","id":"152","title":"Private vote plan"},"153":{"body":"Here we will describe how to: delegate your stake to a stake pool - so that you can participate to the consensus and maybe collect rewards for that. register a stake pool retire a stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Staking with Jörmungandr » Staking with Jörmungandr","id":"153","title":"Staking with Jörmungandr"},"154":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » Delegating your stake","id":"154","title":"Delegating your stake"},"155":{"body":"Stake is concentrated in accounts, and you will need account public key to delegate its associated stake.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to create the delegation certificate","id":"155","title":"how to create the delegation certificate"},"156":{"body":"You will need: the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new owner-stake-delegation STAKE_POOL_ID --output stake_delegation.cert Note that the certificate is in blaco, there’s no account key used for its creation. In order for delegation to work it must be submitted to a node inside a very specific transaction: Transaction must have exactly 1 input The input must be from account The input value must be strictly equal to fee of the transaction Transaction must have 0 outputs The account used for input will have its stake delegated to the stake pool","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for own account","id":"156","title":"for own account"},"157":{"body":"You will need: account public key: a bech32 string of a public key the Stake Pool ID: an hexadecimal string identifying the stake pool you want to delegate your stake to. jcli certificate new stake-delegation ACCOUNT_PUBLIC_KEY STAKE_POOL_ID --output stake_delegation.cert","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » for any account","id":"157","title":"for any account"},"158":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_delegation.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key account_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » submitting to a node","id":"158","title":"submitting to a node"},"159":{"body":"This procedure is needed only for certificates that are to be included in the genesis config file. We need to make sure that the owner of the account is authorizing this delegation to happens, and for that we need a cryptographic signature. We will need the account secret key to create a signature jcli certificate sign --certificate stake_delegation.cert --key account_key.prv --output stake_delegation.signedcert The content of stake_delegation.signedcert will be something like: signedcert1q9uxkxptz3zx7akmugkmt4ecjjd3nmzween2qfr5enhzkt37tdt4uqt0j0039z5048mu9ayv3ujep5sl28q2cpdnx9fkvpq30lmjrrgtmqqctzczvu6e3v65m40n40c3y2pnu4vhd888dygkrtnfm0ts92fe50jy0h0ugh6wlvgy4xvr3lz4uuqzg2xgu6vv8tr24jrwhg0l09klp5wvwzl5 and can now be added in the genesis config file. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Delegating your stake » how to sign your delegation certificate","id":"159","title":"how to sign your delegation certificate"},"16":{"body":"Jörmungandr network capabilities are split into: the REST API, used for informational queries or control of the node; the gRPC API for blockchain protocol exchange and participation; Here we will only review the gRPC API as the REST API is described in another chapter: go to the REST documentation","breadcrumbs":"Core Ledger » General Concepts » Network overview » Network overview","id":"16","title":"Network overview"},"160":{"body":"There are multiple components to be aware of when running a stake pool: your NodeId: it is the identifier within the blockchain protocol (wallet will delegate to your stake pool via this NodeId); your [ VRF ] key pairs: this is the cryptographic material we will use to participate to the leader election; your KES key pairs: this is the cryptographic material we will use to sign the block with. the stake pool Tax : the value the stake pool will take from the total reward due to the stake pool before distributing rewards (if any left) to the delegators. So in order to start your stake pool you will need to generate these objects.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Registering a stake pool","id":"160","title":"Registering a stake pool"},"161":{"body":"","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The primitives","id":"161","title":"The primitives"},"162":{"body":"To generate your [ VRF ] Key pairs, we will utilise jcli as described here : jcli key generate --type=RistrettoGroup2HashDhH stake_pool_vrf.prv stake_pool_vrf.prv file now contains the VRF private key. jcli key to-public --input stake_pool_vrf.prv stake_pool_vrf.pub stake_pool_vrf.pub file now contains the VRF public key.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » VRF key pair","id":"162","title":"VRF key pair"},"163":{"body":"Similar to above: jcli key generate --type=SumEd25519_12 stake_pool_kes.prv stake_pool_kes.prv file now contains the KES private key jcli key to-public --input stake_pool_kes.prv stake_pool_kes.pub stake_pool_kes.pub file now contains the KES public key","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » KES key pair","id":"163","title":"KES key pair"},"164":{"body":"There are 3 values you can set to configure the stake pool’s Tax : tax-fixed: this is the fixed cut the stake pool will take from the total reward due to the stake pool; tax-ratio: this is the percentage of the remaining value that will be taken from the total due tax-limit: a value that can be set to limit the pool’s Tax . All of these values are optionals, if not set, they will be set to 0. This will mean no tax for the stake pool: rewards are all distributed to the delegators.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » Choosing the Tax parameters","id":"164","title":"Choosing the Tax parameters"},"165":{"body":"Let say you control a stake pool SP, with 2 owners (O1 and O2). During epoch 1, SP has created some blocks and is entitled to receive 10_000. Before distributing the 10_000 among the delegators, SP will take its Tax . we extract the tax-fixed. If this is greater or equal to the total (10_000) then we stop there, there is no more rewards to distribute. with what remains the SP extracts its tax-ratio and checks the tax from the ratio is not greater than tax-limit. the total SP rewards will then be distributed equally to the owners (O1 and O2). Note that if the --reward-account is set, the rewards for SP are then distributed to that account and nothing to O1 and O2. For example: total fixed ratio limit SP O1 O2 for delegators takes 100% 10000 0 1/1 0 10000 5000 5000 0 fixed of 1000 10000 1000 0/1 0 1000 500 500 9000 fixed + 10% 2000 1000 1/10 0 1100 550 550 900 fixed + 20% up to 150 2000 1000 1/5 150 1150 575 575 850","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » So how does this works","id":"165","title":"So how does this works"},"166":{"body":"--tax-limit The maximum tax value the stake pool will take. This will set the maximum the stake pool value will reserve for themselves from the `--tax-ratio` (excluding `--tax-fixed`).\n--tax-ratio The percentage take of the stake pool. Once the `tax-fixed` has been take, this is the percentage the stake pool will take for themselves. [default: 0/1]\n--tax-fixed set the fixed value tax the stake pool will reserve from the reward For example, a stake pool may set this value to cover their fixed operation costs. [default: 0]","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » The options to set","id":"166","title":"The options to set"},"167":{"body":"The certificate is what will be sent to the blockchain in order to register yourself to the other participants of the blockchain that you are a stake pool too. jcli certificate new stake-pool-registration \\ --kes-key $(cat stake_pool_kes.pub) \\ --vrf-key $(cat stake_pool_vrf.pub) \\ --start-validity 0 \\ --management-threshold 1 \\ --tax-fixed 1000000 \\ --tax-limit 1000000000 \\ --tax-ratio \"1/10\" \\ --owner $(cat owner_key.pub) > stake_pool.cert The --operator flag is optional. And now you can retrieve your stake pool id (NodeId): jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » creating a stake pool certificate","id":"167","title":"creating a stake pool certificate"},"168":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat stake_pool.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Registering a stake pool » submitting to a node","id":"168","title":"submitting to a node"},"169":{"body":"Stake pool can be retired by sending transaction with retirement certificate. From technical stand point, it is very similar to register stake pool operation. Before start we need to be sure, that: you have sufficient amount of ada to pay fee for transaction with retirement certificate. you know your stake pool id.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retiring a stake pool","id":"169","title":"Retiring a stake pool"},"17":{"body":"The protocol is based on gRPC that combines commonly used protocols like HTTP/2 and RPC. More precisely, Jörmungandr utilises. This choice was made because gRPC is already widely supported around the world because of it’s uitilization of standard protocols HTTP/2 which makes it much easier for Proxies and Firewalls to recognise the protocol and permit the traffic.","breadcrumbs":"Core Ledger » General Concepts » Network overview » The protocol","id":"17","title":"The protocol"},"170":{"body":"To retrieve your stake pool id: jcli certificate get-stake-pool-id stake_pool.cert\nea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » Retrieve stake pool id","id":"170","title":"Retrieve stake pool id"},"171":{"body":"The certificate is what will be sent to the blockchain in order to retire your stake pool. jcli certificate new stake-pool-retirement \\ --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 \\ --retirement-time 0 \\ retirement.cert where: retirement.cert - write the output of to the retirement.cert --retirement-time 0 - 0 means as soon as possible. Which is until the next following epoch. --pool-id ea830e5d9647af89a5e9a4d4089e6e855891a533316adf4a42b7bf1372389b74 - hex-encoded stake pool ID.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » creating a retirement certificate","id":"171","title":"creating a retirement certificate"},"172":{"body":"The jcli transaction add-certificate command should be used to add a certificate before finalizing the transaction. For example: ... jcli transaction add-certificate $(cat retirement.cert) --staging tx\njcli transaction finalize CHANGE_ADDRESS --fee-constant 5 --fee-coefficient 2 --fee-certificate 2 --staging tx ...\njcli transaction seal --staging tx\njcli transaction auth --key owner_key.prv --staging tx\n... The --fee-certificate flag indicates the cost of adding a certificate, used for computing the fees, it can be omitted if it is zero. Important ! Please be sure that you have sufficient amount of owners signatures in order to retire stake pool. At least half of owners singatures (which were provided when registering stake pool) are required to sign retirement certificate. See here for more documentation on transaction creation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Staking with Jörmungandr » Retiring a stake pool » submitting to a node","id":"172","title":"submitting to a node"},"173":{"body":"This section is meant for advanced users and developers of the node, or if you wish to learn more about the node. At the moment, it only covers details on how to create your own blockchain genesis configuration, but in normal case, the blockchain configuration should be available with the specific blockchain system.","breadcrumbs":"Core Ledger » Advanced » Advanced » Advanced","id":"173","title":"Advanced"},"174":{"body":"The genesis file is the file that allows you to create a new blockchain from block 0. It lays out the different parameters of your blockchain: the initial utxo, the start time, the slot duration time, etc… Example of a BFT genesis file with an initial address UTxO and an account UTxO. More info regarding starting a BFT blockchain here and regarding addresses there . You could also find information regarding the jcli genesis tooling . You can generate a documented pre-generated genesis file: jcli genesis init For example your genesis file may look like: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch block0_date: {default_block0_date} # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' instead. # # otherwise leave as this discrimination: {discrimination} # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis block0_consensus: bft # Number of slots in each epoch. # # default value is {default_slots_per_epoch} slots_per_epoch: {default_slots_per_epoch} # The slot duration, in seconds, is the time between the creation # of 2 blocks # # default value is {default_slot_duration} slot_duration: {default_slot_duration} # set the block content max size # # This is the size, in bytes, of all the contents of the block (excluding the # block header). # # default value is {default_block_content_max_size} block_content_max_size: {default_block_content_max_size} # A list of Ed25519 PublicKey that represents the # BFT leaders encoded as bech32. The order in the list matters. consensus_leader_ids: - {leader_1} - {leader_2} # Epoch stability depth # # Optional: default value {default_epoch_stability_depth} epoch_stability_depth: {default_epoch_stability_depth} # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1] # # default value: {default_consensus_genesis_praos_active_slot_coeff} consensus_genesis_praos_active_slot_coeff: {default_consensus_genesis_praos_active_slot_coeff} # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate] linear_fees: # this is the minimum value to pay for every transaction constant: 2 # the additional fee to pay for every inputs and outputs coefficient: 1 # the additional fee to pay if the transaction embeds a certificate certificate: 4 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: # certificate_owner_stake_delegation: 1 # Proposal expiration in epochs # # default value: {default_proposal_expiration} proposal_expiration: {default_proposal_expiration} # The speed to update the KES Key in seconds # # default value: {default_kes_update_speed} kes_update_speed: {default_kes_update_speed} # Set where to send the fees generated by transactions activity. # # by default it is send to the \"rewards\" pot of the epoch which is then # distributed to the different stake pools who created blocks that given # epoch. # # It is possible to send all the generated fees to the \"treasury\". # # Optional, default is \"rewards\" # fees_go_to: \"rewards\" # initial value the treasury will start with, if not set the treasury # starts at 0 treasury: 1000000000000 # set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document # # if not set, the treasury will not grow treasury_parameters: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # It is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: # max_limit: 10000 # Set the total reward supply available for monetary creation # # if not set there is no monetary creation # once emptied, there is no more monetary creation total_reward_supply: 100000000000000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate) # reward_parameters: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 100 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: \"13/19\" # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 1 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 3 # set some reward constraints and limits # # this value is optional, the default is no constraints at all. The settings # are commented below: # #reward_constraints: # # limit the epoch total reward drawing limit to a portion of the total # # active stake of the system. # # # # for example, if set to 10%, the reward drawn will be bounded by the # # 10% of the total active stake. # # # # this value is optional, the default is no reward drawing limit # reward_drawing_limit_max: \"10/100\" # # # settings to incentivize the numbers of stake pool to be registered # # on the blockchain. # # # # These settings does not prevent more stake pool to be added. For example # # if there is already 1000 stake pools, someone can still register a new # # stake pool and affect the rewards of everyone else too. # # # # if the threshold is reached, the pool doesn't really have incentive to # # create more blocks than 1 / set-value-of-pools % of stake. # # # # this value is optional, the default is no pool participation capping # pool_participation_capping: # min: 300 # max: 1000 # list of the committee members, they will be used to guarantee the initial # valid operation of the vote as well as privacy. committees: - \"7ef044ba437057d6d944ace679b7f811335639a689064cd969dffc8b55a7cc19\" - \"f5285eeead8b5885a1420800de14b0d1960db1a990a6c2f7b517125bedc000db\" # Initial state of the ledger. Each item is applied in order of this list\ninitial: # Initial deposits present in the blockchain - fund: # UTxO addresses or account - address: {initial_funds_address_1} value: 10000 - address: {initial_funds_address_2} value: 10000 # Initial token distribution - token: token_id: 00000000000000000000000000000000000000000000000000000000.7e5d6abc to: - address: {initial_funds_address_1} value: 150 - address: {initial_funds_address_2} value: 255 - token: token_id: 00000000000000000000000000000000000000000000000000000000.6c1e8abc to: - address: {initial_funds_address_1} value: 22 - address: {initial_funds_address_2} value: 66 # Initial certificates #- cert: .. # Initial deposits present in the blockchain #- legacy_fund: # # Legacy Cardano address # - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 # value: 123 There are multiple parts in the genesis file: blockchain_configuration: this is a list of configuration parameters of the blockchain, some of which can be changed later via the update protocol; initial: list of steps to create initial state of ledger","breadcrumbs":"Core Ledger » Advanced » genesis file » genesis file","id":"174","title":"genesis file"},"175":{"body":"option format description block0_date number the official start time of the blockchain, in seconds since UNIX EPOCH discrimination string production or test block0_consensus string bft slot_duration number the number of seconds between the creation of 2 blocks epoch_stability_depth number allowed size of a fork (in number of block) consensus_leader_ids array the list of the BFT leader at the beginning of the blockchain block_content_max_size number the maximum size of the block content (excluding the block header), in bytes. linear_fees object linear fee settings, set the fee for transaction and certificate publishing consensus_genesis_praos_active_slot_coeff number genesis praos active slot coefficient. Determines minimum stake required to try becoming slot leader, must be in range (0,1] kes_update_speed number the speed to update the KES Key in seconds slots_per_epoch number number of slots in each epoch for more information about the BFT leaders in the genesis file, see Starting a BFT Blockchain","breadcrumbs":"Core Ledger » Advanced » genesis file » blockchain_configuration options","id":"175","title":"blockchain_configuration options"},"176":{"body":"Each entry can be one of 3 variants: variant format description fund sequence initial deposits present in the blockchain (up to 255 outputs per entry) cert string initial certificate legacy_fund sequence same as fund, but with legacy Cardano address format Example: initial: - fund: - address:
value: 10000 - address: value: 20000 - address: value: 30000 - cert: - legacy_fund: - address: value: 123 - fund: - address: value: 1001","breadcrumbs":"Core Ledger » Advanced » genesis file » initial options","id":"176","title":"initial options"},"177":{"body":"variant format description address string can be a single address or an account address value number assigned value legacy_fund differs only in address format, which is legacy Cardano Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » genesis file » fund and legacy_fund format","id":"177","title":"fund and legacy_fund format"},"178":{"body":"BFT stands for the Byzantine Fault Tolerant ( read the paper ). Jormungandr allows you to start a BFT blockchain fairly easily. The main downside is that it is centralized, only a handful of nodes will ever have the right to create blocks.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » starting a bft node","id":"178","title":"starting a bft node"},"179":{"body":"It is fairly simple. A given number of Nodes (N) will generate a key pairs of type Ed25519 (see JCLI’s Keys ). They all share the public key and add them in the genesis.yaml file. It is the source of truth, the file that will generate the first block of the blockchain: the Block 0 . Then, only by one after the other, each Node will be allowed to create a block. Utilising a Round Robin algorithm.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » How does it work","id":"179","title":"How does it work"},"18":{"body":"The protocol allows you to send multiple types of messages between nodes: sync block to remote peer’s Last Block (tip). propose new fragments (new transactions, certificates, …): this is for the fragment propagation. propose new blocks: for block propagation. There are other commands that optimise the communication and synchronization between nodes that will be documented here in the future. Another type of messages is the Gossip message. These gossip messages allow Nodes to exchange information (gossips) about other nodes on the network, allowing for peer discovery.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Type of queries","id":"18","title":"Type of queries"},"180":{"body":"blockchain_configuration: block0_date: 1550822014 discrimination: test block0_consensus: bft slots_per_epoch: 5 slot_duration: 15 epoch_stability_depth: 10 consensus_leader_ids: - ed25519e_pk1k3wjgdcdcn23k6dwr0cyh88ad7a4ayenyxaherfazwy363pyy8wqppn7j3 - ed25519e_pk13talprd9grgaqzs42mkm0x2xek5wf9mdf0eefdy8a6dk5grka2gstrp3en consensus_genesis_praos_active_slot_coeff: 0.22 linear_fees: constant: 2 coefficient: 1 certificate: 4 kes_update_speed: 43200\ninitial: - fund: - address: ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0 value: 10000 - cert: cert1qgqqqqqqqqqqqqqqqqqqq0p5avfqqmgurpe7s9k7933q0wj420jl5xqvx8lywcu5jcr7fwqa9qmdn93q4nm7c4fsay3mzeqgq3c0slnut9kns08yn2qn80famup7nvgtfuyszqzqrd4lxlt5ylplfu76p8f6ks0ggprzatp2c8rn6ev3hn9dgr38tzful4h0udlwa0536vyrrug7af9ujmrr869afs0yw9gj5x7z24l8sps3zzcmv - legacy_fund: - address: 48mDfYyQn21iyEPzCfkATEHTwZBcZJqXhRJezmswfvc6Ne89u1axXsiazmgd7SwT8VbafbVnCvyXhBSMhSkPiCezMkqHC4dmxRahRC86SknFu6JF6hwSg8 value: 123 In order to start your blockchain in BFT mode you need to be sure that: consensus_leader_ids is non empty; more information regarding the genesis file here .","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Example of genesis file","id":"180","title":"Example of genesis file"},"181":{"body":"jcli genesis encode --input genesis.yaml --output block-0.bin This command will create (or replace) the Block 0 of the blockchain from the given genesis configuration file (genesis.yaml).","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Creating the block 0","id":"181","title":"Creating the block 0"},"182":{"body":"Now that the blockchain is initialized, you need to start your node. Write your private key in a file on your HD: $ cat node_secret.yaml\nbft: signing_key: ed25519_sk1hpvne... Configure your Node (config.yml) and run the following command: $ jormungandr --genesis-block block-0.bin \\ --config example.config \\ --secret node_secret.yaml It’s possible to use the flag --secret multiple times to run a node with multiple leaders.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Starting the node","id":"182","title":"Starting the node"},"183":{"body":"Generate initial config jcli genesis init > genesis.yaml Generate secret key, e.g. jcli key generate --type=Ed25519 > key.prv Put secret key in a file, e.g. node_secret.yaml as follows: bft:\nsigning_key: ed25519_sk1kppercsk06k03yk4qgea.... Generate public key out of previously generated key cat key.prv | jcli key to-public Put generated public key as in genesis.yaml under consensus_leader_ids: Generate block = jcli genesis encode --input genesis.yaml --output block-0.bin Create config file and store it on your HD as node.config e.g. -> ---\nlog: level: trace format: json\nrest: listen: \"127.0.0.1:8607\"\np2p: public_address: /ip4/127.0.0.1/tcp/8606 topics_of_interest: messages: low blocks: normal Start Jörmungandr node : jormungandr --genesis-block block-0.bin --config node.config --secret node_secret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Step by step to start the BFT node","id":"183","title":"Step by step to start the BFT node"},"184":{"body":"Additionally, there is a script here that can be used to bootstrap a test node with bft consensus protocol. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a bft node » Script","id":"184","title":"Script"},"185":{"body":"When starting a genesis praos blockchain there is an element to take into consideration while constructing the block 0: the stake distribution . In the context of Genesis/Praos the network is fully decentralized and it is necessary to think ahead about initial stake pools and to make sure there is stake delegated to these stake pools. In your genesis yaml file, make sure to set the following values to the appropriate values/desired values: # The Blockchain Configuration defines the settings of the blockchain.\nblockchain_configuration: block0_consensus: genesis_praos consensus_genesis_praos_active_slot_coeff: 0.1 kes_update_speed: 43200 # 12hours block0_consensus set to genesis_praos means you want to start a blockchain with genesis praos as the consensus layer. consensus_genesis_praos_active_slot_coeff determines minimum stake required to try becoming slot leader, must be in range 0 exclusive and 1 inclusive.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » starting a genesis blockchain","id":"185","title":"starting a genesis blockchain"},"186":{"body":"In the initial_certs field you will set the initial certificate. It is important to declare the stake pool and delegate stake to them. Otherwise no block will ever be created. Remember that in this array the order matters: In order to delegate your stake, you need a stake pool to already exist, so the stake pool registration certificate should go first.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » The initial certificates","id":"186","title":"The initial certificates"},"187":{"body":"Now you can register a stake pool. Follow the instructions in registering stake pool guide . The owner key (the key you sign the stake pool registration certificate) is the secret key associated to a previously registered stake key.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Stake pool registration","id":"187","title":"Stake pool registration"},"188":{"body":"Now that there is both your stake key and there are stake pools available in the block0 you need to delegate to one of the stake pool. Follow the instruction in delegating stake . And in the initial funds start adding the addresses. To create an address with delegation follow the instruction in JCLI’s address guide . Utilise the stake key registered previously as group address: jcli address single $(cat wallet_key.pub) $(cat stake_key.pub)\nta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm You will notice that addresses with delegation are longer (about twice longer) than addresses without delegation. For example, the most minimal setting you may have is: initial_certs: # register a stake pool (P), owner of the stake pool is the stake key (K) - cert1qsqqqqqqqqqqqqqqqqqqq0p5avfqp9tzusr26chayeddkkmdlap6tl23ceca8unsghc22tap8clhrzslkehdycufa4ywvqvs4u36zctw4ydtg7xagprfgz0vuujh3lgtxgfszqzqj4xk4sxxyg392p5nqz8s7ev5wna7eqz7ycsuas05mrupmdsfk0fqqudanew6c0nckf5tsp0lgnk8e8j0dpnxvjk2usn52vs8umr3qrccegxaz # delegate stake associated to stake key (K) to stake pool (P) - cert1q0rv4ccl54k99rtnm39xvhwvqcwjcm385n2dwvamahpu5tmdz3plt65rpewev3a03xj7nfx5pz0xap2cjxjnxvt2ma9y9dalzder3xm5qyqyq0lx05ggrws0ghuffqrg7scqzdsd665v4m7087eam5zvw4f26v2tsea3ujrxly243sgqkn42uttk5juvq78ajvfx9ttcmj05lfuwtq9qhdxzr0 initial_funds: # address without delegation - address: ta1swx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjsczt057x value: 10000 # address delegating to stake key (K) - address: ta1sjx4j3jwel94g0cgwzq9au7h6m8f5q3qnyh0gfnryl3xan6qnmjse3k2uv062mzj34eacjnxthxqv8fvdcn6f4xhxwa7ms729ak3gsl4qrq2mm value: 1000000","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Delegating stake","id":"188","title":"Delegating stake"},"189":{"body":"Now, to start the node and be able to generate new blocks, you have to put your pool’s private keys and id in a file. Then start the node with the --secret filename parameter. For example, if you follow the examples of the registering stake pool guide You could create a file called poolsecret.yaml with the following content. genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file And you could start the node with this command jormungandr --genesis-block block-0.bin --config config.yaml --secret poolsecret.yaml","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Starting the node","id":"189","title":"Starting the node"},"19":{"body":"The peer 2 peer connections are established utilising multiple components: A multilayered topology (e.g. Poldercast ); Gossiping for node discoverability; Subscription mechanism for event propagation; Security and countermeasures: (such as Topology Policy for scoring and/or blacklisting nodes);","breadcrumbs":"Core Ledger » General Concepts » Network overview » Peer to peer","id":"19","title":"Peer to peer"},"190":{"body":"There is a script here that can be used to bootstrap a test node with a pre-set faucet and stake pool and can be used as an example. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » starting a genesis blockchain » Test script","id":"190","title":"Test script"},"191":{"body":"Please just brain dump everything you know about the above topics, or anything related to them, either individually or interrelated. This process is not intended to consume an excessive amount of your time, so focus more on getting the information you have to contribute down in the quickest way possible. Don’t be overly concerned with format or correctness, its not a test. If you think things work in a particular way, describe it. Obviously, different people will know different things, don’t second guess info and not include it because you think someone else might say it. If you have technical details, like the format of a data entity that can be explained, please include it. This is intended to become a deep dive, to the byte level. If you want to, feel free to x-ref the code as well. Add what you know (if anything) in the section below your name and submit a PR to the DOCS branch (not main) with Steven Johnson for review. I will both review and merge these. I will also start collating the data once this process is complete, and we can then iterate until the picture is fully formed and accurate. Feel free to include other .md files if there is a big piece of information, such as the format of a vote transaction, or the vote plan section of block 0, etc. Or refer to other documentation we may already have (in any form, eg confluence, jira issue or Miro, or the old repos or Anywhere else is ok.). For Jormungandr, we are particularly interested in: How the vote plan is set up, what the various fields of the vote plan are and how they are specified. 2. How individual votes relate to vote-plans. 3. How votes are prevented from being cast twice by the same voter. 4. The format of the entire vote transaction, both public and private. 5. How is the tally conducted? (is it done in Jormungandr, or with the jcli tool for example)? 6. Anything else which is not listed but is necessary to fully understand the votes cast in Jormungandr. Don’t feel limited by this list, if there is anything else the list doesn’t cover but you want to describe it, please do.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate","id":"191","title":"How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate"},"192":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Sasha Prokhorenko","id":"192","title":"Sasha Prokhorenko"},"193":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Nicolo Padovani","id":"193","title":"Nicolo Padovani"},"194":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Felipe Rosa","id":"194","title":"Felipe Rosa"},"195":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Joaquin Rosales","id":"195","title":"Joaquin Rosales"},"196":{"body":"This field is not very well documented, except for a line in book/src/core-vitss-doc/api/v0.yaml that describes it as: > Identifier of the proposal on the blockchain. Internally, the identifier is of type ExternalProposalId (src/chain-libs/chain-impl-mockchain/src/certificate/vote_plan.rs). This is an alias type for DigestOf, from the chain_crypto crate. This is undocumented. The ExternalProposalId is sent through the wire and csv files as a 64-character hex-encoded string. The catalyst-toolbox binary decodes this hex string, and converts it into a valid ExternalProposalId. So that the underlying [u8; 32] can be extracted, hashed and used in logic related to rewards thresholds, votes, and dreps. There is an arbitrary snapshot generator used in vit-servicing-station-tests. It creates valid ExternalProposalId from a randomized [u8; 32] array that is used in integration tests found in vit-testing.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Proposal.chain_proposal_id","id":"196","title":"Proposal.chain_proposal_id"},"197":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefano Cunego","id":"197","title":"Stefano Cunego"},"198":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Conor Gannon","id":"198","title":"Conor Gannon"},"199":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Alex Pozhylenkov","id":"199","title":"Alex Pozhylenkov"},"2":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Introduction » What is Catalyst-Core","id":"2","title":"What is Catalyst-Core"},"20":{"body":"As described in the Poldercast paper, our network topology is built on multiple layers that allow for granular control of it’s behavior. In practice this means a node will have different groups of nodes that it connects to based on different algorithms, each of these groups are a subset of the whole known list of nodes. In short we have: The rings layer selects a predecessor(s) and a successor(s) for each topic (Fragment or Blocks); The Vicinity layer will select nodes that have similar interests; The Cyclon layer, will select nodes randomly. However, we keep the option open to remove some of these layers or to add new ones, such as: A layer to allow privilege connections between stake pools; A layer for the user’s whitelist, a list of nodes the users considered trustworthy and that we could use to check in the current state of the network and verify the user’s node is not within a long running fork;","breadcrumbs":"Core Ledger » General Concepts » Network overview » Multilayered topology","id":"20","title":"Multilayered topology"},"200":{"body":"Spending counter associated to an account. Every time the owner is spending from an account, the counter is incremented. This features is similar to the Ethereum nonce field in the block and prevents from the replay attack. pub struct SpendingCounter(pub(crate) u32); As it was said before every account associated with the a current state of the Spending Counter. Or to be more precised to an array of 8 Spending counters. pub struct SpendingCounterIncreasing { nexts: Vec,\n} Each spending counter differers with each other. The specified lane bits are a first 3 bits of the original Spending counter value. Spending counter structure: (001)[lane] (00000 00000000 00000000 00000001){counter}\n(00100000 00000000 00000000 00000001){whole Spending Counter} With such approach user can: generate up to 8 transactions with the specified different lanes and corresponding counters submit it into the blockchain with no matter on the transaction processing order. So incrementing of the counter will be done in “parallel” for each lane. That is the only difference with the original Ethereum approach with nonce (counter in our implementation). Where for each transaction you should specify an exact value and submits transaction in the exact order.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Spending Counters","id":"200","title":"Spending Counters"},"201":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Cameron Mcloughlin","id":"201","title":"Cameron Mcloughlin"},"202":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Dariusz Kijania","id":"202","title":"Dariusz Kijania"},"203":{"body":"","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Ognjen Dokmanovic","id":"203","title":"Ognjen Dokmanovic"},"204":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Advanced » How Vote plans, Vote Fragments and the blockchain transaction work and inter-relate » Stefan Rasevic","id":"204","title":"Stefan Rasevic"},"205":{"body":"This directory contains Jormungandr’s specifications. file content network the node to node communication and the peer to peer topology","breadcrumbs":"Core Ledger » Jormungandr Specifications » Jormungandr Specifications » Jormungandr Specifications","id":"205","title":"Jormungandr Specifications"},"206":{"body":"This is the migration plan for current cardano blockchain (henceforth refered as legacy) to jormungandr style state and formats.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » MIGRATION","id":"206","title":"MIGRATION"},"207":{"body":"Block Zero: first/genesis block of the blockchain.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Vocabulary","id":"207","title":"Vocabulary"},"208":{"body":"It’s paramount for all users from the legacy chain to find their precious data after the migration. Also as one secondary consideration, the users need not to be aware, as much as possible of the transition, apart from requiring new or updated software capable of handling the new formats and processes. Lastly, it would be useful to provide some kind of cryptographic continuinity of the chains, increasing assurances during transition. The first thing that need consideration is the legacy utxos. We need the ability to take the latest known state of coin distribution and transfer this as is to the new state order. The settings of the legacy chain, are automatically superseded by the new settings mandatory in block zero, so there’s no need to keep any related data. The heavy/light delegation certificates are also superseded by either the BFT leaders or the Genesis-Praos stake pools defined explicitely in block zero. From a user experience and offering continuinity of history, it would be preferable to start the chain initial date at the end of the legacy one. This way the user can still refer to historical transaction in the legacy era of the chain without seeing similar block date on two different era. Finally it’s important to provide as much guarantee as possible of the transition, and hence knowing the hash of last block of the legacy chain on “the other side”, would allow some validation mechanism. Block 0 content being a trusted data assumption, having the previous hash embedded directly inside, reconstruct the inherent chain of trust of a blockchain cheaply.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Description","id":"208","title":"Description"},"209":{"body":"To support this, the following continuinity mechanisms are thus available: blockchain continuity: the ability to embed inside block zero of the chain an arbitrary hash of data, representing the last block of the legacy chain. user experience: block zero choice of start of epoch (e.g. starting the new chain at epoch 129). legacy funds: A sequence of legacy address and their associated values Note: On the blockchain continuity, we decided to store the hash as an opaque blob of data in the content, instead of using the normal blockchain construction of the previous hash. Using the previous hash, would have made the start condition of the blockchain harder to detect compared to the sentinel 0 value currently in place and would have forced to have an identical hash size by construction. The legacy funds are automatically assigned a new transaction-id / index in the new system, compared to whichever computed transaction-id / index in the legacy chain. This new transaction-id is computed similarly from normal transaction in the new system, and no special case has been added to support this. However the legacy address is stable across this transition, allowing user to find their funds on whichever address it was left, at the value it was left.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mechanisms","id":"209","title":"Mechanisms"},"21":{"body":"Gossiping is the process used for peer discovery. It allows two things: For any nodes to advertise themselves as discoverable; To discover new nodes via exchanging a list of nodes (gossips); The gossips are selected by the different layers of the multilayered topology. For the Poldercast modules, the gossips are selected just as in the paper. Additional modules may select new nodes in the gossip list or may decide to not add any new information.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Gossiping","id":"21","title":"Gossiping"},"210":{"body":"To clearly break from the past, the old funds are only allowed to be consumed, leading to the old state monotonically decreasing. This also prevent from having the old legacy address construction available in witness or outputs. The transaction-id/index system is the same as normal funds, so the inputs doesn’t requires any modification, however we need to distinguish the witness since the witness on the old chain is different. This provide a clear mechanism to distinguish the type of input (fund or old-fund). The witness construction is similar to what is found on the old chain, an extended public key followed by a signature.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Transaction","id":"210","title":"Transaction"},"211":{"body":"Considering the risk involve in such a migration, we can repeatly tests mock migration at arbitrary points (preferably at end of epoch). The migration itself will be fully automated and repeadtly tested for solidity and accuracy, and can be done with mostly off the shelf code that we already have. The migration will capture the latest known state and create the equivalent genesis.yaml file mingled with the settings for the new blockchain, and subsequently compiled into a working block0. The task itself should be completeable in sub-second, leading to a very small window of transition. Although to note, the block0 size is proportional to the number of state point that is being kept; Approximately for ~200000 utxos, 13mb of block zero will be created. rust-cardano’s chain-state is already capable to capture the latest known state, but there’s no currently any genesis generational tool for this task, although the task remain fairly simple.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Mainnet-Testnet tests","id":"211","title":"Mainnet-Testnet tests"},"212":{"body":"The net benefits is the total removal of all legacy constructs; The new users or software have no need to handle any of the legacy data. This also provide an implicit net chain “compression”: what happened in Byron, stays in Byron. The legacy addresses are particularly problematic for many reasons not described here, but not providing full usage is particularly advantageous, nonetheless since it provide a way to not have their numbers go up ever after transition.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Advantages","id":"212","title":"Advantages"},"213":{"body":"From historical purpose and bip44 wallets, we need to provide the legacy blocks. The legacy blocks can be made available from a 3rd party service for a one-of 2.0 Gb download (approximate: all the mainnet data), for example using a service like cardano-http-bridge which have caching and CDN capability, leading to a very small cost for the provider of such a service. It’s also possible to provide the historical data as part of the node, supplementing the current interface with an interface to download old data ala cardano-http-bridge. The first option is strongly favored to cleanly break the legacy data from the new data. Legacy randomized wallets (e.g. Ddz addresses) will not need to download the full history, since the legacy address contains the metadata sufficient for recovery, so only block zero is necessary to know their own fund. On the other hand, legacy BIP44 wallets will need to download the full history to be able to recover their BIP44 state at the transition. For wallet history of legacy wallets, the historical data will have to be downloaded too. For new wallet, after the transition, this historical data will not be needed whatsoever, saving 2.0gb of download for new users. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » MIGRATION » Historical data","id":"213","title":"Historical data"},"214":{"body":"Bringing Ouroboros to the people","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Network","id":"214","title":"Network"},"215":{"body":"This document highlights the requirements we wish to apply to a decentralised network applied to cardano blockchain. Then we will discuss the possible solutions we can provide in a timely manner and the tradeoff we will need to make.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Introduction","id":"215","title":"Introduction"},"216":{"body":"This is a main of general guidelines for the design decision in this document, and to judge the merit of solutions: Efficiency : the communication between the nodes needs to be succinct. to the point, avoiding unnecessary redundancies. The protocol needs to stabilise quickly to a well distributed network, guaranteeing a fast propagation of the important events; Security : limit the ability for other nodes to trigger behavior that would prevent a peer from working (e.g. unbounded resources usage) Simplicity : we need to easily implement the protocol for any platforms or environment that will matter for our users.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design decisions guidelines","id":"216","title":"Design decisions guidelines"},"217":{"body":"This section describes the communication between 2 different peers on the network. It involves synchronous queries with the context of the local state and remote state.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Node communication","id":"217","title":"Node-to-Node communication"},"218":{"body":"This is a general high level list of what information will need to be exchanged: Bootstrap local state from nothing Update local state from an arbitrary point Answer Synchronous queries: RPC style Asynchronous messages for state propagation (transactions, blocks, ..) P2P messages (See P2P Communication)","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » General Functionality","id":"218","title":"General Functionality"},"219":{"body":"User Stories Alice wants to synchronise its local state from Bob from Alice’s Tip: Alice downloads Block Headers from Bob (starting from Alice’s Tip); Bob does not know this Tip: Error: unknown block Alice starts again with a previous Tip; Bob does know this state: Bob streams back the block headers Alice downloads block Since Alice knows the list of Block Headers and the number of blocks to download, Alice can download from multiple peers, requiring to get block stream from different Hash in this list of Block; State: tip_hash, storage Pseudocode (executed by Alice): sync(): bob.get_headers(alice.tip) Alice wants to propagate a transaction to Bob Alice send the transaction hash to Bob Bob replies whether it want to hear more Alice send the transaction to Bob if Bob agrees Alice wants to submit a Block to Bob Alice sends the Header to Bob; Bob replies whether it want to hear more Alice sends the Block to Bob if Bob agrees Alice want to exchange peers with Bob High Level Messages We model everything so that we don’t need any network state machine. Everything is stateless for Handshake: () -> (Version, Hash) This should be the first request performed by the client after connecting. The server responds with the protocol version and the hash of the genesis block. The handshake is used to establish that the remote node has a compatible protocol implementation and serves the right block chain. Tip: () -> Header: Return the header of the latest block known by the peer (also known as at the tip of the blockchain). DD? : Block vs hash: block is large but contain extra useful metadata (slotid, prevhash), whereas hash is small. GetHeaders: ([Hash]) -> [Header]: Fetch the headers (cryptographically verifiable metadata summaries) of the blocks identified by hashes. GetBlocks: ([Hash]) -> [Block]: Like GetHeaders, but returns full blocks. PullBlocksToTip: ([Hash]) -> Stream: Retrieve a stream of blocks descending from one of the given hashes, up to the remote’s current tip. This is an easy way to pull blockchain state from a single peer, for clients that don’t have a need to fiddle with batched GetBlocks requests and traffic distribution among multiple peers. BlockSubscription: (Stream
) -> Stream Establish a bidirectional subscription to send and receive announcements of new blocks and (in the client role) receive solicitations to upload blocks or push the chain of headers. The stream item is a tagged enumeration: BlockEvent: Announce(Header)|Solicit([Hash])|Missing([Hash], Hash) Announce propagates header information of a newly minted block. Solicit requests the client to upload blocks identified by the given hashes using the UploadBlocks request. Missing requests the client to stream the chain of block headers using the given range parameters. The meaning of the parameters is the same as in the PullHeaders request. The client does not need to stream solicitations upwards, as it can request blocks directly with GetBlocks or PullHeaders. The announcements send in either direction are used for both announcing new blocks when minted by this node in the leadership role, and propagating blocks received from other nodes on the p2p network. PullHeaders: ([Hash], Hash) -> Stream
Retrieve a stream of headers for blocks descending from one of the hashes given in the first parameter, up to the hash given in the second parameter. The starting point that is latest in the chain is selected. The client sends this request after receiving an announcement of a new block via the BlockSubscription stream, when the parent of the new block is not present in its local storage. The proposed starting points are selected from locally known blocks with exponentially receding depth. PushHeaders: (Stream
) Streams the chain of headers in response to a Missing event received via the BlockSubscription stream. UploadBlocks: (Stream) Uploads blocks in response to a Solicit event received via the BlockSubscription stream. ContentSubscription: (Stream) -> Stream Establish a bidirectional subscription to send and receive new content for the block under construction. Used for submission of new fragments submitted to the node by application clients, and for relaying of fragment gossip on the network. P2P Messages: see P2P messages section. The protobuf files describing these methods are available in the proto directory of chain-network crate in the chain-libs project repository. Pseudocode chain sync algorithm struct State { ChainState chain_state, HashMap blocks\n} struct ChainState { Hash tip, HashSet ancestors, Utxos ..., ...\n} impl ChainState { Fn is_ancestor(hash) -> bool { self.ancestors.exists(hash) }\n} // Fetch ‘dest_tip’ from `server’ and make it our tip, if it’s better.\nsync(state, server, dest_tip, dest_tip_length) { if is_ancestor(dest_tip, state.chain_state.tip) { return; // nothing to do } // find a common ancestor of `dest_tip` and our tip. // FIXME: do binary search to find exact most recent ancestor n = 0; loop { hashes = server.get_chain_hashes(dest_tip, 2^n, 1); if hashes == [] { ancestor = genesis; break; } ancestor = hashes[0]; if state.chain_state.has_ancestor(ancestor): { break } n++; } // fetch blocks from ancestor to dest_tip, in batches of 1000 // blocks, forwards // FIXME: integer arithmetic is probably off a bit here, but you get the idea. nr_blocks_to_fetch = 2^n; batch_size = 1000; batches = nr_blocks_to_fetch / batch_size; new_chain_state = reconstruct_chain_state_at(ancestor); for (i = batches; i > 0; i--) { // validate the headers ahead of downloading blocks to validate // cryptographically invalid blocks. It is interesting to do that // ahead of time because of the small size of a BlockHeader new_hashes = server.get_chain_hashes(dest_tip, (i - 1) * batch_size, batch_size); new_headers = server.get_headers(new_hashes); if new_headers are invalid { stop; } new_blocks = server.get_blocks(new_hashes).reverse(); for block in new_blocks { new_chain_state.validate_block(block)?; write_block_to_storage(block); } } if new_chain_state.chain_quality() > state.chain_state.chain_quality() { state.chain_state = new_chain_state }\n} Choice of wire Technology We don’t rely on any specific wire protocol, and only require that the wire protocol allow the transfer of the high level messages in a bidirectional way. We chose to use GRPC/Protobuf as initial technology choice: Efficiency : Using Protobuf, HTTP2 , binary protocol Bidirectional : through HTTP2, allowing stream of data. data push on a single established connection. Potential Authentication : Security / Stream atomicity towards malicious MITM Simplicity : Many languages supported ( code generation , wide support ) Language/Architecture Independent : works on everything Protobuf file acts as documentation and are relatively easy to version Connections and bidirectional subscription channels can be left open (especially for clients behind NAT), although we can cycle connections with a simple RCU-like system.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Design","id":"219","title":"Design"},"22":{"body":"Based on the multilayered topology, the node will open multiplexed and bi-directional connections (thanks to industry standard gRPC , this comes for free). These bi-directional connections are used to propagate events such as: Gossiping events, when 2 nodes exchange gossips for peer discovery; Fragment events, when a node wants to propagate a new fragment to other nodes; Block events, when a node wants to propagate a new block creation event","breadcrumbs":"Core Ledger » General Concepts » Network overview » Subscription mechanism","id":"22","title":"Subscription mechanism"},"220":{"body":"Client are different from the node, in the sense that they may not be reachable by other peers directly. However we might consider non reachable clients to keep an open connections to a node to received events. TBD ReceiveNext : () -> Event Another solution would be use use libp2p which also implements NAT Traversals and already has solutions for this.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Node-to-Client communication","id":"220","title":"Node-to-Client communication"},"221":{"body":"This section describes the construction of the network topology between nodes participating in the protocol. It will describes the requirements necessary to propagate the most efficiently the Communication Messages to the nodes of the topology.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Peer-to-Peer network","id":"221","title":"Peer-to-Peer network"},"222":{"body":"Communication Messages : the message that are necessary to be sent through the network (node-to-node and node-to-client) as defined above; Topology : defines how the peers are linked to each other; Node or Peer : an instance running the protocol; Link : a connection between 2 peers in the topology;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Definitions","id":"222","title":"Definitions"},"223":{"body":"A node can join the network at any moment; A node can leave the network at any moment; Node will discover new nodes to connect to via gossiping: nodes will exchange information regarding other nodes; Nodes will relay information to their linked nodes (neighbors); A node can challenge another node utilising the VRF in order to authentify the remote node is a specific stake owner/gatherer.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Functionalities","id":"223","title":"Functionalities"},"224":{"body":"RingGossip : NodeProfileDetails * RING_GOSSIP_MAX_SIZE; VicinityGossip : NodeProfileDetails * VICINITY_GOSSIP_MAX_SIZE; CyclonGossip : NodeProfileDetails * CYCLON_GOSSIP_MAX_SIZE; A node profile contains: Node’s id; Node’s IP Address; Node’s topics (set of what the node is known to be interested into); Node’s connected IDs","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Messages","id":"224","title":"Messages"},"225":{"body":"The requirements to join and leave the network at any moment, to discover and change the links and to relay messages are all handled by PolderCast . Implementing PolderCast provides a good support to handle churn, fast relaying and quick stabilisation of the network. The paper proposes 3 modules: Rings, Vicinity and Cyclon . Our addition: The preferred nodes We propose to extend the number of modules with a 4th one. This module is static and entirely defined in the config file. This 4th module will provide the following features: Connect to specific dedicated nodes that we know we can trust (we may use a VRF challenge to validate they are known stakeholder – they participated to numerous block creations); This will add a static, known inter-node communications. Allowing users to build a one to one trusted topology; A direct application for this will be to build an inter-stake-pool communication layer; Static / configured list of trusted parties (automatically whitelisted for quarantine) Metrics measurement related to stability TBD Reports and Quarantine In order to facilitate the handling of unreachable nodes or of misbehaving ones we have a system of reports that handles the state of known peers. Following such reports, at the moment based only on connectivity status, peers may move into quarantine or other less restrictive impairements. In the current system, a peer can be in any of these 4 states: Available: the peer is known to the current node and can be picked up by poldercast layers for gossip and propagation of messages. This is the state in which new peers joining the topology via gossip end up. Trusted: the last handshake between the peer and this node was successfull. For these kind of nodes we are a little more forgiving with reports and failures. Quarantined: the peer has (possibly several) failed handshake attempts. We will not attempt to contact it again for some time even if we receive new gossip. Unknown: the peer is not known to the current node. Actually, due to limitations of the poldercast library, this may mean that there are some traces of the peer in the profiles maintained by the current node but it cannot be picked up by poldercast layers for gossip or propagation. For all purposes but last resort connection attempts (see next paragraph), these two cases are essentially the same. Since a diagram is often easier to understand than a bunch of sentences, these are the transitions between states in the current implementation, with details about avoiding network partition removed (see next paragraph). Quarantine Avoid network partitions An important property of the p2p network is resilience to outages. We must avoid creating partitions in the network as much as possible. For this reason, we send a manual (i.e. not part of poldercast protocol) optimistic gossip message to all nodes that were reported after the report expired. If this message fails to be delivered, no further action will be taken against that peer to avoid cycling it back and forth from quarantine indefinitely. If instead the message is delivered correctly, we successfully prevented a possible partition :). Another measure in place is a sort of a last resort attempt: if the node did not receive any incoming gossip for the last X minutes (tweakable in the config file), we try to contact again any node that is not quarantined and for which we have any trace left in the system (this is where nodes that were artificially forgotten by the system come into play). Part to look into Privacy. Possibly Dandelion tech","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Communications Design","id":"225","title":"Communications Design"},"226":{"body":"","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial models considered","id":"226","title":"Adversarial models considered"},"227":{"body":"We consider an adversary whose goal is to isolate from the network nodes with stake. The impact of such successful attack would prevent block creation. Such adversarial node would propose a block that may look like a fork of the blockchain. Ouroboros Genesis allows fork up to an undetermined number of blocks in the past. The targeted would then have to do a large amount of block synchronisation and validation. If the fork pretend to be in an epoch known to us, we can perform some cryptographic verifications (check the VRF); If the fork pretends to be in an epoch long past, we may perform a small, controlled verification of up to N blocks from the forking point to verify the validity of these blocks; Once the validity verified, we can then verify the locality aliveness of the fork and apply the consensus algorithm to decide if such a fork is worth considering. However, suck attack can be repeated ad nauseam by any adversarial that happened to have been elected once by the protocol to create blocks. Once elected by its stake, the node may turn adversarial, creates as many invalid blocks, and propose them to the attacked node indefinitely. How do we keep track of the rejected blocks ? How do we keep track of the blacklisted stakeholder key or pool that are known to have propose too many invalid block or attempted this attack ? Rejected block have a given block hash that is unlikely to collide with valid blocks, a node can keep a bloomfilter of hashes of known rejected block hash; or of known rejected VRF key; The limitation of maintaining a bloom filter is that we may need to keep an ever growing bloom filter. However, it is reasonable to assume that the consensus protocol will organise itself in a collection of stakepools that have the resources (and the incentive) to keep suck bloom filter.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Adversarial forks","id":"227","title":"Adversarial forks"},"228":{"body":"We consider an adversary whose goal is to disrupt or interrupt the p2p message propagation. The event propagation mechanism of the pub/sub part of the p2p network can be leverage to continuously send invalid or non desired transactions to the network. For example, in a blockchain network protocol the transactions are aimed to be sent quickly between nodes of the topology so they may be quickly added to the ledger. While it is true that one can create a random amount of valid transactions, it is also possible perform a certain amount of validation and policies to prevent the transaction message forwarding from flooding the network: The protocol already requires the nodes to validate the signatures and that the inputs are unspent; We can add a policy not to accept transaction that may imply a double spend, i.e. in our pool of pending transaction, we can check that there is no duplicate inputs. The p2p gossiping protocols is an active action where a node decides to contact another node to exchange gossip with. It is not possible to flood the network with the gossiping messages as they do not require instant propagation of the gossips.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Flooding attack","id":"228","title":"Flooding attack"},"229":{"body":"We consider an adversary whose goal is to deanonymize users by linking their transactions to their IP addresses. This model is analysed in Dandelion . PolderCast already allows us to provide some reasonable guarantees against this adversary model. Node do not share their links, they share a limited number of gossips based on what a node believe the recipient node might be interested in; While some links can be guessed (those of the Rings module for example), some are too arbitrary ( Vicinity or Cyclon ) to determined the original sender of a transaction;","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Anonymity Against distributed adversaries","id":"229","title":"Anonymity Against distributed adversaries"},"23":{"body":"In order to facilitate the handling of unreachable nodes or of misbehaving ones we have built a node policy tooling. Currently, we collect connectivity statuses for each node. The policy can then be tuned over the collected data to apply some parameters when connecting to a given node, as well as banning nodes from our topology. For each node, the following data is collected: Connection statuses: The failed connection attempts and when it happened; Latency Last message used per topic item (last time a fragment has been received from that node, last time a block has been received from that node…) In the future, we may expand the polocy to include data collected at the blockchain level lile: Faults (e.g. trying to send an invalid block) Contributions in the network Their blockchain status (e.g. tips)","breadcrumbs":"Core Ledger » General Concepts » Network overview » Security and countermeasures","id":"23","title":"Security and countermeasures"},"230":{"body":"We consider an adversary that could intercept the communication between two nodes. Such adversary could: Escalate acquired knowledge to break the node privacy (e.g. user’s public keys); Disrupt the communication between the two nodes; Potentially we might use SSL/TLS with dynamic certificate generation. A node would introduce itself to the network with its certificate. The certificate is then associated to this node and would be propagated via gossiping to the network.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » Man in the middle","id":"230","title":"Man in the middle"},"231":{"body":"Each participants in the protocol need: Key Evolving signature (KES) secret key Verifiable Random Function (VRF) secret key Apart from the common block deserialization and hashing verification, each block requires: 2 VRF verification 1 KES verification. Considering the perfect network, it allow to calculate how many sequential hops, a block can hope to reach at a maximum bound. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Jormungandr Specifications » Network » In relation to Ouroboros Genesis","id":"231","title":"In relation to Ouroboros Genesis"},"232":{"body":"This section describes tools and libraries used to test catalyst-core components. Jormungandr test libraries includes projects: jormungandr-automation - sets of apis for automating all node calls and node sub-components (REST, GRPC, logging etc.), hersir - api & cli for bootstrapping entire network of nodes with some predefined configuration. Project takes care of proper settings for all nodes as well as block0, thor - testing api & cli for all wallet operations, mjolnir - load tool (api & cli) for all kind of jormungandr transactions, loki - api & cli for sending invalid/adversary load as well as boostraping adversary node.","breadcrumbs":"Core Ledger » testing » testing » testing","id":"232","title":"testing"},"233":{"body":"Incubator of all testing apis for the node and jcli:","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr-automation","id":"233","title":"jormungandr-automation"},"234":{"body":"In order to build jormungandr-automation in main project folder run: cd testing/jormungandr-automation\ncargo build","breadcrumbs":"Core Ledger » testing » jormungandr-automation » build","id":"234","title":"build"},"235":{"body":"Api that can be used to run jcli executable underneath and is capable to assert outcome of command. It can work with already installed jcli (using PATH variable) or custom path. For Example: let jcli: JCli = Default::default(); let private_key = jcli.key().generate(\"ed25519-extended\"); let public_key = jcli.key().convert_to_public_string(&private_key);","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jcli testing api","id":"235","title":"jcli testing api"},"236":{"body":"Collection of automation modules for node interaction and configuration: configuration - allows to configure node & blockchain settings, explorer - explorer configuration/bootstrap & interaction module, grpc - module for grpc internode connection library handling. capable of sending some RPC calls as well as bootstrap receiver instance, legacy - module for loosely typed configuration. This allow to bootstrap older version of node, for example to satisfy need on cross-version testing, rest - module for jormungandr REST api testing, starter - module for bootstrapping node, verifier - node state verifier logger - api for jormungandr log handling/assertion process - api for handling jormungandr process","breadcrumbs":"Core Ledger » testing » jormungandr-automation » jormungandr testing api","id":"236","title":"jormungandr testing api"},"237":{"body":"Bunch of loosely coupled utility modules, mostly for additional configuration capabilities or benchmarking: benchmark - measurements framework for various purposes, for example bootstrap time or how many transactions were successfully handled by node, vit - additional helpers for voting capabilities, asserts - asserts extensions, tailored for node needs, block0 - block0 extensions, like easier access to blockchain setting or function to download block0, collector - input collector utils, configuration - test configuration helper (apps paths etc.), keys - create default keys, observer - simple observer framework, panic - panic error reporting in test code, process - process extensions, resource - resources manager, mostly for tls certificates used for testing, storage - node storage generators, time - time utils, mostly for waiting for particular block date, verify - substitute of asserts in case we don’t want to panic eagerly when assertion is failed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-automation » testing","id":"237","title":"testing"},"238":{"body":"Hersir is a cli & api project capable of bootstrapping local jormungandr network which can be exercised by various tools.","breadcrumbs":"Core Ledger » testing » Hersir » Hersir","id":"238","title":"Hersir"},"239":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Hersir » build & install","id":"239","title":"build & install"},"24":{"body":"The p2p policy provides some more fine control on how to handle nodes flagged as not behaving as expected (see the list of data collected). It currently works as a 4 levels: trusted, possible contact, quarantined, forgotten. Each gossip about a new node will create a new entry in the list of possible contact. Then the policy, based on the logged data associated to this node, may decide to put this node in quarantine for a certain amount of time. Trusted nodes are the ones to which we were able to connect successfully. A connectivity report against those nodes will make them transition to the possible contact level, while a successful connection attempt will promote them again to trusted. The changes from one level to another is best effort only. Applying the policy may be costly so the node applies the policy only on the node it is interested about (a gossip update or when reporting an issue against a node). This guarantees that the node does not spend too much time policing its database. And it also makes sure that only the nodes of interest are up to date. However it is possible for the node to choose, at a convenient time, to policy the whole p2p database. This is not enforced by the protocol. Disposition Description available Node is available for the p2p topology for view selection and gossips. quarantined Node is not available for the p2p topology for view selection or gossips. After a certain amount of time, if the node is still being gossiped about, it will be moved to available. forgotten A node forgotten is simply removed from the whole p2p database. However, if the node is still being gossiped about it will be added back as available and the process will start again. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Network overview » Policy","id":"24","title":"Policy"},"240":{"body":"The simplest configuration is available by using command: hersir --config res\\example.yaml it results in small network with all data dumped to current folder","breadcrumbs":"Core Ledger » testing » Hersir » quick start","id":"240","title":"quick start"},"241":{"body":"Simple example: nodes: - spawn_params: alias: passive leadership_mode: passive persistence_mode: inmemory trusted_peers: - leader - spawn_params: alias: leader leadership_mode: leader persistence_mode: inmemory blockchain: discrimination: test consensus: bft nodes sections defines each network node. We can define alias, that is then used to express relations between the nodes. Also if we keep everything in memory or if node can mint blocks or not. blockchain section defines blockchain parameters, like what is the consensus and if we are using test or production addresses discrimination.","breadcrumbs":"Core Ledger » testing » Hersir » configuration","id":"241","title":"configuration"},"242":{"body":"nodes spawn_params alias: string (mandatory) - reference name of the node. Example: “alias”, bootstrap_from_peers: bool (optional) - should node bootstrap from trusted peers. By default it is auto-evaluated: If node doesn’t have any trusted peers it won’t bootstrap from peers, faketime: custom (optional) - inject fake time settings. For example: faketime: { /// Clock drift (1 = no drift, 2 = double speed) drift: 1, /// Offset from the real clock in seconds offset: 2, } gossip_interval: time (optional) - node gossip interval with the rest of the network. Format: number unit. For example: 10 s, jormungandr: path (optional) - path to jormungandr node executable, leadership_mode: enum (optional) - node leadership mode. Possible values: passive - node won’t be able to produce blocks, leader - node will be able to mint blocks, listen_address: string (optional) - override listen address for node. Example: /ip4/127.0.0.1/tcp/10005, log_level: enum (optional) - log level, Possible values: (info/warn/error/debug/trace) max_bootstrap_attempts: number (optional) - maximum number of bootstrap attempt before abandon, max_connections: number (optional) - max connection node will create with other nodes, max_inbound_connections: number (optional) - max inbound connection that node will accept, mempool: custom (optional) - mempool configuration. Example: mempool: pool_max_entries: 100000 log_max_entries: 100000 network_stuck_check: time (optional) - check interval which node use to verify blockchain advanced. Format: number unit. For example: 10 s, node_key_file: path (optional) - path to node network key, persistence_mode: enum (optional) - set persistence mode. Possible values: inmemory - everything is kept in node memory. If node restarts, all history is gone, persistence - node uses local storage to preserve current state, persistent_fragment_log: path (optional) - persistent fragment log serializes every fragment node receives via REST api, policy: custom (optional) - defines nodes quarantine configuration. Example: policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" preferred_layer: custom (optional) - defines preferences in gossiping. Example: layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 public_address: String (optional)- override public address for node. Example: /ip4/127.0.0.1/tcp/10005, skip_bootstrap: bool (optional) - skips node bootstrap step, topics_of_interest: custom (optional) - topics of interests describe how eager node will fetch blocks or transactions: topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool verbose: bool (optional) - enable verbose mode, which prints additional information, trusted_peers: List (optional) - list of trusted peers. Example: trusted_peers: - leader - leader_1 blockchain block0_date: date (optional) - block0 date, if not provided current date would be taken, block_content_max_size: number (optional) - maximum block content size in bytes, committees: list (optional) - list of wallet aliases which will be committees (capable of tallying the vote), consensus: enum (optional) - blockchain consensus, possible values: Bft,GenesisPraos, consensus_genesis_praos_active_slot_coeff: float (optional) - Determines minimum stake required to try becoming slot leader, must be in range (0,1], discrimination: enum (optional) - type of discrimination of the blockchain: production, if this blockchain is meant for production test, otherwise external_committees: list (optional) - list of committees to be included in block0, external_consensus_leader_ids: list (optional) - list of external leaders id (apart from already defined nodes), external_wallets: list (optional) - list of external wallets. Example: external_wallets: - alias: Alice address: ca1q47vz09320mx2qcs0gspwm47lsm8sh40af305x759vvhm7qyjyluulja80r value: 1000000000 tokens: {} kes_update_speed: number (optional) - the speed to update the KES Key in seconds, linear_fee: custom (optional) - fee calculations settings, slot_duration: number (optional) - The slot duration, in seconds, is the time between the creation of 2 blocks, slots_per_epoch: number (optional) - number of slots in each epoch, tx_max_expiry_epochs: number (optional) - transaction ttl (expressed in number of epochs). session jormungandr: path (optional) - override path to jormungandr. By default it’s taken from PATH variable, root: path (optional) - override path to local storage folder. By default all related data is dumped ino TEMP folder, generate_documentation: bool (optional) - generate documentation files into local storage folder, mode: enum (optional) - set hersir working mode. By default it’s “standard”, which just prints information about correct nodes bootstrap. Possible values: monitor - prints current nodes status as progress bar, standard - just prints information about correct nodes bootstrap, interactive - spawn helper cli, which allows to interact with nodes, log: enum (optional) - log level, Possible values: (info/warn/error/debug/trace), title: string (optional) - give local storage folder name instead of random one.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available parameters","id":"242","title":"full list of available parameters"},"243":{"body":"Full list of commands is available on hersir --help command. hersir 0.1.0 USAGE: hersir [FLAGS] --config FLAGS: -h, --help Prints help information -V, --version Prints version information -v, --verbose OPTIONS: -c, --config Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Hersir » full list of available commands","id":"243","title":"full list of available commands"},"244":{"body":"Integration test is a container project for all jormungandr & jcli tests. Tests are validating node correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » jormungandr-integration-tests","id":"244","title":"jormungandr-integration-tests"},"245":{"body":"Jormungandr tests architecture relies on test pyramid approach. Most of the effort is put into until and api level and small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Architecture of tests","id":"245","title":"Architecture of tests"},"246":{"body":"","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Quick start","id":"246","title":"Quick start"},"247":{"body":"In order to run test jormungandr & jcli need to be installed or prebuild.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Prerequisites","id":"247","title":"Prerequisites"},"248":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Start tests","id":"248","title":"Start tests"},"249":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Tests categories","id":"249","title":"Tests categories"},"25":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Node organization » Node organization","id":"25","title":"Node organization"},"250":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run all functional tests","id":"250","title":"How to run all functional tests"},"251":{"body":"cd testing/jormungandr-integration-tests\ncargo test jcli","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run jcli only functional tests","id":"251","title":"How to run jcli only functional tests"},"252":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node functional tests","id":"252","title":"How to run single node functional tests"},"253":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node performance tests","id":"253","title":"How to run single node performance tests"},"254":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run single node endurance tests","id":"254","title":"How to run single node endurance tests"},"255":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::network --features network","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network functional tests","id":"255","title":"How to run network functional tests"},"256":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features sanity,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network performance tests","id":"256","title":"How to run network performance tests"},"257":{"body":"cd testing/jormungandr-integration-tests\ncargo test jormungandr::non_functional::network --features soak,non-functional","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » How to run network endurance tests","id":"257","title":"How to run network endurance tests"},"258":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » jormungandr-integration-tests » Frequency","id":"258","title":"Frequency"},"259":{"body":"Loki is an adversary node implementation and api which operates on jormungandr network.","breadcrumbs":"Core Ledger » testing » Loki » Loki","id":"259","title":"Loki"},"26":{"body":"The secure enclave is the component containing the secret cryptographic material, and offering safe and secret high level interfaces to the rest of the node.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Secure Enclave","id":"26","title":"Secure Enclave"},"260":{"body":"In order to build hersir in main project folder run: cd testing/loki\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Loki » Build & Install","id":"260","title":"Build & Install"},"261":{"body":"Loki can be used bootstrap using cli: loki --genesis-block block0.bin --listen-address 127.0.0.1:8080 -s secret.yaml where: genesis-block - Path to the genesis block (the block0) of the blockchain listen-address - Specifies the address the node will listen secret - Set the secret node config (in YAML format). Example: ---\nbft: signing_key: ed25519_sk1w2tyr7e2w26w5vxv65xf36kpvcsach8rcdmlmrhg3rjzeumjnzyqvdvwfa Then utilizing rest interface of loki node one can send some invalid GRPC messages to rest of the network: curl --location --request POST 'http://127.0.0.1:8080/invalid_fragment' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"address\": \"127.0.0.1:1000\", \"parent\": \"tip\"\n}' where: address - address of “victim” node, parent - Parent block. Possible values: tip - current tip of “victim” node, block0 - block0, {Hash} - arbitrary parent block which hash is provided in request","breadcrumbs":"Core Ledger » testing » Loki » Quick Start","id":"261","title":"Quick Start"},"262":{"body":"/invalid_hash - Sends block with invalid hash, /invalid_signature - Sends block with invalid by wrong leader signature, /nonexistent_leader - Sends block with non-existing leader, /wrong_leader - Sends block with signed with invalid leader,","breadcrumbs":"Core Ledger » testing » Loki » Other possible operations","id":"262","title":"Other possible operations"},"263":{"body":"Loki also provides API for performing adversary operations, like sending invalid fragments: use loki::{AdversaryFragmentSender, AdversaryFragmentSenderSetup}; let mut sender = ... let receiver = .. // node initialization let jormungandr = ... let adversary_sender = AdversaryFragmentSender::new( jormungandr.genesis_block_hash(), jormungandr.fees(), BlockDate::first().next_epoch().into(), AdversaryFragmentSenderSetup::no_verify(), ); adversary_sender .send_faulty_transactions_with_iteration_delay( 10, &mut sender, &receiver, &jormungandr, Duration::from_secs(5), ) .unwrap(); Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Loki » API","id":"263","title":"API"},"264":{"body":"Mjolnir is a load cli & api project which operates on jormungandr node.","breadcrumbs":"Core Ledger » testing » Mjolnir » Mjolnir","id":"264","title":"Mjolnir"},"265":{"body":"In order to build mjolnir in main project folder run: cd testing/mjolnir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Mjolnir » Build & Install","id":"265","title":"Build & Install"},"266":{"body":"","breadcrumbs":"Core Ledger » testing » Mjolnir » Quick Start","id":"266","title":"Quick Start"},"267":{"body":"Mjolnir can be used as a cli. It is capable of putting various load on jormungandr node. It has couple of different load types: explorer - Explorer load fragment - Fragment load passive - Passive Nodes bootstrap rest - Rest load Simplest load configuration is to use rest load with below parameters: Rest load USAGE: mjolnir.exe rest [FLAGS] [OPTIONS] --duration --endpoint FLAGS: -h, --help Prints help information -m, --measure Prints post load measurements -V, --version Prints version information OPTIONS: -c, --count Number of threads [default: 3] --delay Amount of delay [milliseconds] between sync attempts [default: 50] -d, --duration Amount of delay [seconds] between sync attempts -e, --endpoint Address in format: http://127.0.0.1:8002/api/ -b, --progress-bar-mode Show progress bar [default: Monitor]","breadcrumbs":"Core Ledger » testing » Mjolnir » CLI","id":"267","title":"CLI"},"268":{"body":"Mjolnir main purpose is to serve load api: use jortestkit::load::{self, ConfigurationBuilder as LoadConfigurationBuilder, Monitor};\nuse std::time::Duration; //node initialization let mut jormungandr = ... let rest_client = jormungandr.rest(); // create request generator for rest calls let request = mjolnir::generators::RestRequestGen::new(rest_client); // duration based load run (40 seconds) let config = LoadConfigurationBuilder::duration(Duration::from_secs(40)) // with 5 threads .thread_no(5) // with delay between each request 0.01 s .step_delay(Duration::from_millis(10)) // with monitor thread monitor status of load run each 0.1 s .monitor(Monitor::Progress(100)) // with status printer which prints out status of load run each 1 s .status_pace(Duration::from_secs(1_000)) .build(); // initialize load in sync manner // (duration of each request is calculated by time difference between receiving response and sending request ) let stats = load::start_sync(request, config, \"Jormungandr rest load test\"); // finally some way to assert expected correctness, like percentage of successful requests assert!((stats.calculate_passrate() as u32) > 95);","breadcrumbs":"Core Ledger » testing » Mjolnir » API","id":"268","title":"API"},"269":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Mjolnir » full list of available commands","id":"269","title":"full list of available commands"},"27":{"body":"The node’s network is 3 components: Intercommunication API (GRPC) Public client API (REST) Control client API (REST) More detailed information here","breadcrumbs":"Core Ledger » General Concepts » Node organization » Network","id":"27","title":"Network"},"270":{"body":"Thor is a wallet cli & wallet api project which operates on jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Core Ledger » testing » Thor » Thor","id":"270","title":"Thor"},"271":{"body":"In order to build hersir in main project folder run: cd testing/hersir\ncargo build\ncargo install --path . --force","breadcrumbs":"Core Ledger » testing » Thor » Build & Install","id":"271","title":"Build & Install"},"272":{"body":"","breadcrumbs":"Core Ledger » testing » Thor » Quick Start","id":"272","title":"Quick Start"},"273":{"body":"Thor can be used as a wallet cli. It is capable of sending transactions or pull data from node. The simplest usage example is available by using commands: register new wallet based on secret key: thor wallets import --alias darek --password 1234 secret.file connect to node rest API: thor connect https://jormungandr.iohk.io/api use recently created wallet for rest of commands: thor wallets use darek sync with the node regarding wallet data: thor wallets refresh send transaction: thor send tx --ada 5 --address ca1q5srhkdfuxqdm6h57mj45acxcdr57cr5lhddzkrjqyl8mmw62v9qczh78cu -pin 1234","breadcrumbs":"Core Ledger » testing » Thor » CLI","id":"273","title":"CLI"},"274":{"body":"Thor also allows you to use it as Api to perform any wallet operations from the code: use thor::{Wallet, FragmentSender, FragmentSenderSetup, FragmentVerifier}; let receiver = thor::Wallet::default(); let mut sender = thor::Wallet::default(); // node bootstrap let jormungandr = ... let fragment_sender = FragmentSender::from_with_setup( jormungandr.block0_configuration(), FragmentSenderSetup::no_verify(), ); fragment_sender .send_transaction(&mut sender, &receiver, &jormungandr, 1.into()) .unwrap();","breadcrumbs":"Core Ledger » testing » Thor » API","id":"274","title":"API"},"275":{"body":"Thor api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.thor). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Core Ledger » testing » Thor » Configuration","id":"275","title":"Configuration"},"276":{"body":"Full list of commands is available on thor --help command. thor 0.1.0\nCommand line wallet for testing Jormungandr USAGE: thor FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occured confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) refresh Pulls wallet data from the node send Sends fragments to nodes status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » testing » Thor » full list of available commands","id":"276","title":"full list of available commands"},"277":{"body":"Glossary: blockchains : the current blockchain and possibly different known forks. clock : general time tracking to know the time in blockchain unit (epoch/slot) tip : the current fork that is considered the correct one, related to consensus algorithm.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Internal Design","id":"277","title":"Internal Design"},"278":{"body":"Each node runs several tasks. Task is a process with a clearly defined interface that abstracts a particular task. General tasks: Network task : handle new connections, and perform lowlevel queries. It does queries parsing and routing them to the other tasks: block, client or transaction tasks. Block task : handles blocks reception from other nodes and the leadership thread. The blocks can be external and internal. External block (…), and internal block (…). When the task receives an external block it validates the block. If validation succeeds then the task appends blocks to the blockchain and checks if the tip needs any changes. When the task receives an internal block it does the same actions except for block validation. And then broadcasts the change of the tip to the network thread. Leadership task : waits for each new slot, evaluates if this node is a slot leader. In case if it is, the task creates a new block (with a set of known transactions) referencing the latest known and agreed block in the blockchain. Then the task sends it to the block thread for processing. Client task : receives block header/body queries. This task is in charge of in accord [!!!] with the blockchains, reply to the client. Transaction task : receives new transactions from the network, validates transaction and handle duplicates. Also the broadcast to other nodes new (valid) transaction received. Internal Architecture","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Tasks","id":"278","title":"Tasks"},"279":{"body":"The blockchain module is responsible to maintaining the blockchain (i.e.) the blocks, the current working branches (we will come back to it in a bit), the different states associated to every blocks, the epoch’s data (the parameters, the stake active distribution and the leadership schedule). It is fairly easy to maintain the blocks of a blockchain. They all have the identifier of the parent block. Storing them is another story though and is not covered here. Blockchain Data structure block0 or blockx.y are blocks of the blockchain. They link to the parent block except for the block0 which may not have parents here (there is a special case where we could set a parent pointing to the block of a previously known state of the blockchain); legder0 or ledgerx.y are states of the blockchain at a given block; epoch x parameters are the blockchain parameters that are valid for all the epoch x; epoch N stake distribution are the stake distribution as extracted from epoch N; epoch x leadership is the leadership schedule for the epoch x. This may seem a bit overwhelming. Let’s follow the flow of block creations and validation on this blockchain:","breadcrumbs":"Core Ledger » Internal Design » Internal Design » Maintaining the blockchain’s state","id":"279","title":"Maintaining the blockchain’s state"},"28":{"body":"This interface is a binary, efficient interface using the protobuf format and GRPC standard. The protobuf files of types and interfaces are available in the source code. The interface is responsible to communicate with other node in the network: block sending and receiving fragments (transaction, certificates) broadcast peer2peer gossip","breadcrumbs":"Core Ledger » General Concepts » Node organization » Intercommunication API (GRPC)","id":"28","title":"Intercommunication API (GRPC)"},"280":{"body":"Let’s start with first initializing the blockchain from the block0. Blockchain Data structure From block0 The first block , the block0, is the block that contains the initial data of the blockchain. From the block0 we can construct the first ledger : the ledger0. From the ledger0 we can extract two objects: epoch 1 parameters which will contains the fee setting to apply during the epoch 1; epoch 0 stake distribution. This is the stake distribution at the end of the epoch 0 (and before the following epoch starts); And now from the epoch 0 stake distribution we can determine the leadership schedules for the epoch 1 and the epoch 2.","breadcrumbs":"Core Ledger » Internal Design » Internal Design » From the block 0","id":"280","title":"From the block 0"},"281":{"body":"The view from the point of view of a block k at an epoch N (block N.k) looks like the following: Blockchain Data structure From blockk It links to the parent block: block N.(k - 1). This is important because it allows us to retrieve the ledger state at the block N.(k - 1). In order to accept the block N.k in the blockchain we need to validate a couple of things: the block N.k is correctly referring to the block N.(k - 1): the block date is increasing; the block number is strictly monotonically increasing; the schedule is correct: the block has been created by the right stake pool at the right time; the block N.k is updating the parent’s ledger state (ledger N.(k - 1)) and is producing a valid new ledger: ledger N.k","breadcrumbs":"Core Ledger » Internal Design » Internal Design » for a block","id":"281","title":"for a block"},"282":{"body":"Epoch transition happen when we switch to an epoch to the following one. Blockchain Data structure Transition","breadcrumbs":"Core Ledger » Internal Design » Internal Design » epoch transition","id":"282","title":"epoch transition"},"283":{"body":"Originally the voting blockchain was designed to be manually started and required a full block 0 and a configuration file to be created and distributed to nodes before it could commence. This made automated deployment difficult and introduces necessary manual steps into the process of running the voting system. To resolve this, the voting system is modified to allow the blockchain and parts of the configuration to be automatically created based solely on the parameters of the next election.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Automatic deployment of the voting blockchain","id":"283","title":"Automatic deployment of the voting blockchain"},"284":{"body":"There are two sources of data required to start the blockchain. Block 0 and the config YAML file. To ease deployment, Block 0 will be created dynamically based on data held in our distributed object storage (which is currently a Postgresql Database.) As are certain parameters currently required for the configuration file. The blockchain would still need to retain the current method for starting, in addition to the new “auto” mode. In essence, automatic configuration entails: Minimizing manual config items to only those that unavoidably need to be defined. Generating configuration for other items where possible from known local state, and only having configuration items for these to override the defaults. Sharing data in a central repository of local configuration items that other nodes would require. Reading other data directly from their source of truth (Such as the schedule of the election, voting power snapshot data and proposals/vote plan information.)","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Overview","id":"284","title":"Overview"},"285":{"body":"The node is configured by a YAML file which contains the following data. In the code, every config parameter should be accompanied by detailed a detailed documentation comment. secret_file: - Optional Path (to what, used for what?) storage: - Optional Path (to what, used for what?) log: - Optional Logger settings. level: - Optional Logger level, can be \"Trace\", \"Debug\", \"Info\". \"Warn\" and \"Error\". Should default to \"Info\" if not set. format: - Format of the logs, can be \"plain\" and \"json\". Should default to \"json\" if not set. output: - Optional destination of the log output. Options need to be fully documented . Should default to stdout if not defined. trace_collector_endpoint: - Optional Options need to be fully documented . Should default to None (ie, no external logging) if not defined. mempool: Optional configuration of the mempool. Should default as specified here. pool_max_entries: - Optional - maximum number of entries in the mempool. Should default to 1,000,000 if not set. log_max_entries: - Optional - maximum number of entries in the fragment logs. Should default to ???? if not set. persistent_log: - Optional - path to the persistent log of all incoming fragments. A decision needs to be made if persistent logging is normally desired. If it is, it should default to a location in /var. If not, it should default to None and be disabled. leadership: - Optional - the number of entries allowed in the leadership logs. logs_capacity: - Optional - Should default to ???? if not set. rest: - Optional - Enables REST API. listen: - Optional - Address to listen to rest api requests on. Should default to “0.0.0.0:12080”. This default is open to suggestions tls: - Optional - Define inbuilt tls support for the listening socket. If not specified, TLS is disabled. The default is TLS Disabled. cert_file: - Path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: - Path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: - Optional - Defines CORS settings. Default should be as shown in the individual entries. allowed_origins - Origin domains we accept connections from. Defaults to “*”. max_ages_secs - How long in seconds to cache CORS responses. Defaults to 60. allowed_headers - A list of allowed headers in the preflight check. If the provided list is empty, all preflight requests with a request header will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. allowed_methods - A list of allowed methods in the preflight check. If the provided list is empty, all preflight requests will be rejected. Default should be a value which allows cors to work without requiring extra config under normal circumstances. STILL TODO * `jrpc` - Optional. No idea what this does yet??? TODO: Document it and defaults. * `p2p` - Peer to Peer config. #[serde(default)] pub p2p: P2pConfig, #[serde(default)] pub http_fetch_block0_service: Vec, #[cfg(feature = \"prometheus-metrics\")] pub prometheus: Option, /// the time interval with no blockchain updates after which alerts are thrown #[serde(default)] pub no_blockchain_updates_warning_interval: Option, #[serde(default)] pub bootstrap_from_trusted_peers: bool, #[serde(default)] pub skip_bootstrap: bool, pub block_hard_deadline: Option, Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Automatic deployment of the voting blockchain » Configuration","id":"285","title":"Configuration"},"286":{"body":"sequenceDiagram actor U as User participant B as Cardano Block Chain participant Br as Cardano-Catalyst Bridge participant C as Catalyst Backend U->>B: Registeration Txn Note right of U: Type/Public Key/Reward Address Note over B: Block Minted B->>Br: Reads Chain Tip, detects Registration Br->>C: Records Latest Registration U->>C: Requests Priviliged Operation Note over C: Generates Random Challenge C->>U: Challenge Sent Note over U: Signs Challenge with Public Key U->>C: Challenge Response Note right of U: Public Key/Challenge Signature Note over C: Validates Response alt Public Key Registered & Signature Valid C->>U: Authorized Note left of C: Authorized
Session Established loop Authorized U->>C: Privileged Operation C->>U: Priviliged Response end else Unauthorized C->>U: Unauthorized end Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Internal Design » Permissionless Auth » Permissionless Auth","id":"286","title":"Permissionless Auth"},"287":{"body":"Welcome to the Catalyst testing User Guide. Vit testing is a family of projects, with the aim to support all quality assurance activities in Catalyst. One can find here: catalyst backend deployment tool, catalyst backend mock, integration tests, registration service and registration verify service, snapshot service, snapshot wormhole, custom proxy for catalyst backend, cli voting app implementation, load driver imitating voting app users.","breadcrumbs":"Catalyst testing User Guide » Catalyst testing User Guide » Catalyst testing User Guide","id":"287","title":"Catalyst testing User Guide"},"288":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"288","title":"Iapyx"},"289":{"body":"Iapyx is a wallet cli & wallet api project which operates on catalyst-jormungandr network. WARNING: main purpose of the wallet is testing. Do NOT use it on production.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Iapyx","id":"289","title":"Iapyx"},"29":{"body":"This interface is for simple queries for clients like: Wallet Client & Middleware Analytics & Debugging tools Explorer it’s recommended for this interface to not be opened to the public. TODO: Add a high level overview of what it does","breadcrumbs":"Core Ledger » General Concepts » Node organization » Public API REST","id":"29","title":"Public API REST"},"290":{"body":"In order to build iapyx in main project folder run: cd iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Build & Install","id":"290","title":"Build & Install"},"291":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Quick Start","id":"291","title":"Quick Start"},"292":{"body":"Iapyx can be used as a wallet cli. It is capable of sending votes or pull data from node. The simplest usage example is available by using commands: register new wallet based on qr code: iapyx wallets import qr qr_file.png --pin 1234 connect to node rest API: iapyx connect https://catalyst-backend.io/api use recently created wallet for rest of commands: iapyx wallets use darek sync with the node and get wallet data: iapyx wallets refresh send vote: iapyx vote single --choice yes --pin --id {proposal_id}","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » CLI","id":"292","title":"CLI"},"293":{"body":"Iapyx can be used as api in order to perform voting operations from the code: let wallet_proxy = spawn_network(...); let secret_file_path = Path::new(\"wallet_alice\"); let mut alice = iapyx::ControllerBuilder::default() .with_backend_from_client(wallet_proxy.client())? .with_wallet_from_secret_file(secret_file_path.as_ref())? .build() let proposals = alice.proposals().unwrap(); let votes_data = proposals .iter() .take(batch_size) .map(|proposal| (proposal, Choice::new(0))) .collect(); let fragment_ids = alice .votes_batch(votes_data) .unwrap() .iter() .map(|item| item.to_string()) .collect();","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » API","id":"293","title":"API"},"294":{"body":"Iapyx api doesn’t use any configuration files. However cli uses small cache folder on filesystem (located in: ~/.iapyx). The purpose of this configuration is to store wallet lists as well as secret keys guarded by pass phrase.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » Configuration","id":"294","title":"Configuration"},"295":{"body":"Full list of commands is available on iapyx --help command. iapyx 0.0.1\nCommand line wallet for testing Catalyst USAGE: iapyx.exe FLAGS: -h, --help Prints help information -V, --version Prints version information SUBCOMMANDS: address Gets address of wallet in bech32 format clear-tx Clears pending transactions to confirm. In case if expiration occurred confirm-tx Confirms successful transaction connect Sets node rest API address. Verifies connection on set funds Prints information about voting funds help Prints this message or the help of the given subcommand(s) logs Prints entire fragment logs from the node pending-transactions Prints pending transactions (not confirmed) proposals Prints proposals available to vote on refresh Pulls wallet data from the catalyst backend status Prints wallet status (balance/spending counters/tokens) statuses Prints pending or already sent fragments statuses vote Sends votes to backend votes Prints history of votes wallets Allows to manage wallets: add/remove/select operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx » full list of available commands","id":"295","title":"full list of available commands"},"296":{"body":"Iapyx-load is a load cli & api project which operates on catalyst backend.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Iapyx Load","id":"296","title":"Iapyx Load"},"297":{"body":"In order to build iapyx-load in main project folder run: cd testing/iapyx\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Build & Install","id":"297","title":"Build & Install"},"298":{"body":"","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » Quick Start","id":"298","title":"Quick Start"},"299":{"body":"Iapyx-load can be used as a cli. It is capable of putting various load on catalyst backend. Available load types: node-only - Load which targets blockchain calls only static-only - Load which targets static data only simulation - Load with simulate real user case (both blockchain and static data in some relation) Also node-only load provides two load characteristic: bursts - Bursts mode. Sends votes in batches and then wait x seconds const - Constant load. Sends votes with x votes per second speed And two scenario types: duration - Duration based load. Defines how much time load should run count - Requests count based load. Defines how many requests load should sent in total Simplest load configuration is to use node-only load with below parameters: iapyx-load node-only const count --help USAGE: iapyx-load.exe node-only const count [FLAGS] [OPTIONS] --requests-per-thread FLAGS: --debug Print additional information --help Prints help information --read-from-filename Read pin from filename of each qr code --reuse-accounts-early Update all accounts state before sending any vote --reuse-accounts-lazy Update account state just before sending vote -h, --https Use https for sending fragments -V, --version Prints version information OPTIONS: -a, --address
Address in format: 127.0.0.1:8000 [default: 127.0.0.1:8000] -n, --requests-per-thread How many requests per thread should be sent -c, --criterion Pass criteria -d, --delay Amount of delay [miliseconds] between requests [default: 10000] --global-pin Global pin for all qr codes [default: 1234] -b, --progress-bar-mode Show progress. Available are (Monitor,Standard,None) [default: Monitor] -q, --qr-codes-folder Qr codes source folder -s, --secrets-folder Secrets source folder --status-pace How frequent (in seconds) to print status [default: 1] -t, --threads Prints nodes related data, like stats,fragments etc [default: 3]","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » CLI","id":"299","title":"CLI"},"3":{"body":"Welcome to the Jörmungandr User Guide. Jörmungandr is a node implementation, written in rust, with the initial aim to support the Ouroboros type of consensus protocol. A node is a participant of a blockchain network, continuously making, sending, receiving, and validating blocks. Each node is responsible to make sure that all the rules of the protocol are followed.","breadcrumbs":"Core Ledger » Core Ledger » Core Ledger","id":"3","title":"Core Ledger"},"30":{"body":"This interface is not finished, but is a restricted interface with ACL, to be able to do maintenance tasks on the process: Shutdown Load/Retire cryptographic material TODO: Detail the ACL/Security measure Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Node organization » Control API REST","id":"30","title":"Control API REST"},"300":{"body":"Iapyx load main purpose is to serve as load api: use iapyx::{NodeLoad, NodeLoadConfig};\nuse jortestkit::{ load::{ConfigurationBuilder, Monitor}, measurement::Status,\n}; ... let no_of_threads = 10; let no_of_wallets = 40_000; let mut qr_codes_folder = Path::new(\"qr-codes\"); let config = ConfigurationBuilder::duration(parameters.calculate_vote_duration()) .thread_no(threads_no) .step_delay(Duration::from_millis(delay)) .fetch_limit(250) .monitor(Monitor::Progress(100)) .shutdown_grace_period(Duration::from_secs(60)) .build(); let load_config = NodeLoadConfig { batch_size, use_v1: false, config, criterion: Some(100), address: \"127.0.0.1:8080\".to_string(), qr_codes_folder: Some(qr_codes_folder), secrets_folder: None, global_pin: \"\".to_string(), reuse_accounts_lazy: false, reuse_accounts_early: false, read_pin_from_filename: true, use_https: false, debug: false, }; let iapyx_load = NodeLoad::new(load_config); if let Some(benchmark) = iapyx_load.start().unwrap() { assert!(benchmark.status() == Status::Green, \"too low efficiency\"); }","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » API","id":"300","title":"API"},"301":{"body":"Full list of commands is available on mjolnir --help command. mjolnir 0.1.0\nJormungandr Load CLI toolkit USAGE: mjolnir.exe [FLAGS] [SUBCOMMAND] FLAGS: --full-version display full version details (software version, source version, targets and compiler used) -h, --help Prints help information --source-version display the sources version, allowing to check the source's hash used to compile this executable. this option is useful for scripting retrieving the logs of the version of this application -V, --version Prints version information SUBCOMMANDS: explorer Explorer load fragment Fragment load help Prints this message or the help of the given subcommand(s) passive Passive Nodes bootstrap rest Rest load Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Iapyx » Iapyx Load » full list of available commands","id":"301","title":"full list of available commands"},"302":{"body":"Integration test is a container project for all catalyst e2e and integration tests. Tests are validating network correctness, stability. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » integration-tests","id":"302","title":"integration-tests"},"303":{"body":"Integration tests architecture relies on test pyramid approach. Where most of the effort is put into component and integration level and finally small amount of tests on E2E. Thanks to that we can create fast and reliable tests. Testing architecture Before approaching Jormungandr testing we need to first remind ourselves a simplified architecture diagram for jcli & jormungandr. Simplified architecture","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Architecture of tests","id":"303","title":"Architecture of tests"},"304":{"body":"","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Quick start","id":"304","title":"Quick start"},"305":{"body":"In order to run test integration tests below components need to be installed or prebuild: [vit-servicing-station-server|https://github.com/input-output-hk/vit-servicing-station/tree/master/vit-servicing-station-server] [jormungandr|https://github.com/input-output-hk/jormungandr/tree/master/jormungandr] [valgrind|https://github.com/input-output-hk/vit-testing/tree/master/valgrdin]","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Prerequisites","id":"305","title":"Prerequisites"},"306":{"body":"In order to build jormungandr-automation in main project folder run: cd testing\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Start tests","id":"306","title":"Start tests"},"307":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.) Below diagram is a good overview: Test categories","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Tests categories","id":"307","title":"Tests categories"},"308":{"body":"cd integration-tests\ncargo test","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run all functional tests","id":"308","title":"How to run all functional tests"},"309":{"body":"cd integration-tests\ncargo test --features testnet-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run testnet functional tests","id":"309","title":"How to run testnet functional tests"},"31":{"body":"In a proof of stake, participants are issued a stake equivalent to the amount of coins they own. The stake is then used to allow participation in the protocol, simply explained as: The more stake one has, the more likely one will participate in the good health of the network. When using the BFT consensus, the stake doesn’t influence how the system runs, but stake can still be manipulated for a later transition of the chain to another consensus mode.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake","id":"31","title":"Stake"},"310":{"body":"cd integration-tests\ncargo test non_functional::load --features load-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run load tests","id":"310","title":"How to run load tests"},"311":{"body":"cd testing/jormungandr-integration-tests\ncargo test non_functional::soak --features soak-tests","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » How to run network endurance tests","id":"311","title":"How to run network endurance tests"},"312":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly","breadcrumbs":"Catalyst testing User Guide » integration-tests » integration-tests » Frequency","id":"312","title":"Frequency"},"313":{"body":"Registration service is REST service purely for test purposes which is capable to interact with: voter registration cli cardano cli vit-kedqr","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"313","title":"Registration service"},"314":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"314","title":"build"},"315":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"315","title":"quick start"},"316":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"316","title":"clients"},"317":{"body":"Registration CLI is cli utility tool which help to interact with registration service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"317","title":"cli"},"318":{"body":"Example: use registration_service::{ client::rest::RegistrationRestClient, context::State, request::Request, }; ... let payment_skey = Path::new(\"payment.skey\"); let payment_skey = Path::new(\"payment.vkey\"); let payment_skey = Path::new(\"stake.skey\"); let payment_skey = Path::new(\"stake.vkey\"); let payment_skey = Path::new(\"vote.skey\"); let registration_client = RegistrationRestClient::new_with_token(registration_token, registration_address); let registration_request = Request { payment_skey, payment_vkey, stake_skey, stake_vkey, vote_skey, }; let registration_job_id = registration_client.job_new(registration_request).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status); let qr_code_path = temp_dir.child(\"qr_code\"); std::fs::create_dir_all(qr_code_path.path()).unwrap(); let qr_code = registration_client .download_qr(registration_job_id.clone(), qr_code_path.path()) .unwrap(); let voting_key_sk = registration_client .get_catalyst_sk(registration_job_id) .unwrap(); NOTE: see cardano cli guide . This details information how to create payment and stake files.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"318","title":"api"},"319":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Registration CLI","id":"319","title":"Registration CLI"},"32":{"body":"Account are represented by 1 type of address and are just composed of a public key. The account accumulate moneys and its stake power is directly represented by the amount it contains For example: A - Account with 30$ => Account A has stake of 30 B - Account with 0$ => Account B has no stake The account might have a bigger stake than what it actually contains, since it could also have associated UTXOs, and this case is covered in the next section.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the Account Model","id":"32","title":"Stake in the Account Model"},"320":{"body":"In order to build iapyx in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Build & Install","id":"320","title":"Build & Install"},"321":{"body":"The simplest usage example is available by using commands: register new job: registration-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\\n--stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS} NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This detail information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » Quick Start","id":"321","title":"Quick Start"},"322":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration CLI » full list of available commands","id":"322","title":"full list of available commands"},"323":{"body":"This section describe configuration file which can be passed as argument for registration service: port: port on which registration-service will be exposed, jcli: path to jcli executable, result-dir: path to folder which artifacts will be dumped (qr-code etc.), cardano-cli: path to jcli executable, voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"jcli\": \"jcli\", \"result-dir\": \"/persist\", \"cardano-cli\": \"./cardano-cli\", \"voter-registration\": \"./voter-registration\", \"vit-kedqr\": \"./vit-kedqr\", \"network\": \"mainnet\", \"token\": \"...\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"323","title":"Configuration"},"324":{"body":"Registration service is REST service purely for test purposes. It is capable to interact with voter registration cli , cardano cli and vit-kedqr .","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » Registration service","id":"324","title":"Registration service"},"325":{"body":"In order to build registration-verify-service in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » build","id":"325","title":"build"},"326":{"body":"The simplest configuration is available by using command: registration-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » quick start","id":"326","title":"quick start"},"327":{"body":"","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » clients","id":"327","title":"clients"},"328":{"body":"Registration CLI is cli utility tool which help to interact with registration verify service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » cli","id":"328","title":"cli"},"329":{"body":"Example: use registration_verify_service::client::rest::RegistrationVerifyRestClient; ... let registration_verify_client = RegistrationVerifyRestClient::new_with_token(registration_token, registration_address); let mut form = Form::new() .text(\"pin\", \"1234\") .text(\"funds\",\"500\") .text(\"threshold\", \"500\") .file(\"qr\", PathBuf::new(\"my_q.png\")?; let registration_job_id = registration_verify_client.job_new(form).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); println!(\"waiting for registration job\"); let registration_jobs_status = registration_client .wait_for_job_finish(registration_job_id.clone(), wait) .unwrap(); println!(\"{:?}\", registration_jobs_status);","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration service » api","id":"329","title":"api"},"33":{"body":"UTXO are represented by two kind of addresses: single address: those type of address have no stake associated group address: those types of address have an account associated which receive the stake power of the UTXOs value For example with the following utxos: UTXO1 60$ (single address) => has stake of 0 UTXO2 50$ (group address A) \\ ->- A - Account with 10$ => Account A has stake of 100 UTXO3 40$ (group address A) / UTXO4 20$ (group address B) -->- B - Account with 5$ => Account B has stake of 25","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake in the UTXO Model","id":"33","title":"Stake in the UTXO Model"},"330":{"body":"Registration Verify CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Registration Verify CLI","id":"330","title":"Registration Verify CLI"},"331":{"body":"In order to build registration verify project in main project folder run: cd registration-verify-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Build & Install","id":"331","title":"Build & Install"},"332":{"body":"The simplest usage example is available by using commands: register new job: registration-verify-cli job new --payment-skey payment.skey --payment-vkey payment.vkey \\ --stake-skey stake.skey --stake-vkey stake.vkey --endpoint https://{ADDRESS}` NOTE: response of the above call should return job-id which should be used in next call NOTE: see cardano cli guide . This details information how to create payment and stake files. check job id: registration-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » Quick Start","id":"332","title":"Quick Start"},"333":{"body":"Full list of commands is available on registration-cli --help command. registration-service 0.1.0 USAGE: registration-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint registration service endpoint [env: REGISTRATION_ENDPOINT=] -t, --token access token [env: REGISTRATION_TOKEN=] SUBCOMMANDS: files download jobs artifacts health check if registration service is up help Prints this message or the help of the given subcommand(s) job jobs related operations Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Registration Verify CLI » full list of available commands","id":"333","title":"full list of available commands"},"334":{"body":"This section describe configuration file which can be passed as argument for registration verify service: port: port on which registration-verify-service will be exposed, jcli: path to jcli executable, snapshot-token: token required by snapshot-service , snapshot-address: address of snapshot-service , client-token: access token for client endpoints (verifying voting power etc.), admin-token: access token for admin endpoints (updating snapshot etc.),, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, initial-snapshot-job-id: initial job id from snapshot service that will be used when starting service Example: \"port\": 8080, \"jcli\": \"jcli\", \"snapshot-token\": \"3568b599a65557b2a2e\", \"snapshot-address\": \"https://snapshot.address:8080\", \"client-token\": \"5e19639accf2d76bae\", \"admin-token\": \"605a7c515ec781fd39\", \"network\": \"mainnet\", \"initial-snapshot-job-id\": \"3b49a0ae-5536-454b-8f47-780d9e7da6a0\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Registration service » Configuration » Configuration","id":"334","title":"Configuration"},"335":{"body":"Service which operates on top of voting tools . It is a interface improvement which expose voting tools as a REST service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Snapshot trigger service","id":"335","title":"Snapshot trigger service"},"336":{"body":"In order to build snapshot-trigger-service in main project folder run: cd snapshot-trigger-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » build","id":"336","title":"build"},"337":{"body":"The simplest configuration is available by using command: snapshot-trigger-service --config config.yaml See config for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » quick start","id":"337","title":"quick start"},"338":{"body":"In order to start new job one need to send POST request like below: curl --location --request POST 'https://snapshot.io/api/job/new' \\\n--header 'API-Token: ...' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"threshold\": 2000000, // IN Lovelace \"slot-no\": 31842935\n}' Response will contains job status: b0b7b774-7263-4dce-a97d-c167169c8f27 Then query for job status: curl --location --request GET 'https://snapshot.io/api/job/status/b0b7b774-7263-4dce-a97d-c167169c8f27' \\\n--header 'API-Token: ...' and finally fetch snapshot: curl --location --request GET 'https://snapshot.io/api/job/files/get/b0b7b774-7263-4dce-a97d-c167169c8f27/snapshot.json' \\\n--header 'API-Token: ...' which has form: { \"initial\": [ { \"fund\": [ { \"address\": \"ca1q5yr504t56ruuwrp5zxpu469t9slk0uhkefc7admk7wqrs24q6nxwyhwjcf\", \"value\": 14463 }, { \"address\": \"ca1q5ynl2yqez8lmuaf3snvgcw885c9hxxq6uexeevd4al8pct7vx69sljvzxe\", \"value\": 9991 },\n....","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » Usage","id":"338","title":"Usage"},"339":{"body":"","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » clients","id":"339","title":"clients"},"34":{"body":"Stake pool are the trusted block creators in the genesis-praos system. A pool is declared on the network explicitly by its owners and contains, metadata and cryptographic material. Stake pool has no stake power on their own, but participants in the network delegate their stake to a pool for running the operation.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake pool","id":"34","title":"Stake pool"},"340":{"body":"Snapshot CLI is cli utility tool which help to interact with snapshot trigger service without manually constructing requests See cli for more details.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » cli","id":"340","title":"cli"},"341":{"body":"Example: use snapshot_trigger_service::{ client::rest::SnapshotRestClient, config::JobParameters, State, }; let job_param = JobParameters { slot_no: Some(1234567), tag: Some(\"fund1\".to_string()), }; let snapshot_token= \"...\"; let snapshot_address = \"...\"; let snapshot_client = SnapshotRestClient::new_with_token(snapshot_token.into(), snapshot_address.into()); let snapshot_job_id = snapshot_client.job_new(job_params).unwrap(); let wait = WaitBuilder::new().tries(10).sleep_between_tries(10).build(); let snapshot_jobs_status = snapshot_client.wait_for_job_finish(snapshot_job_id.clone(), wait)?; let snapshot = snapshot_client.get_snapshot(snapshot_job_id)?;","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Snapshot trigger service » api","id":"341","title":"api"},"342":{"body":"Registration CLI is cli utility tool which help to interact with registration service.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Registration CLI","id":"342","title":"Registration CLI"},"343":{"body":"In order to build registration-service in main project folder run: cd registration-service\ncargo build\ncargo install --path . --force","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Build & Install","id":"343","title":"Build & Install"},"344":{"body":"The simplest usage example is available by using commands: register new job: snapshot-cli --endpoint https://snapshot.io job new --tag daily NOTE: response of the above call should return job-id which should be used in next call like below: b0b7b774-7263-4dce-a97d-c167169c8f27 check job id: snapshot-cli job status --job-id {job-id} --endpoint https://{ADDRESS}","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » Quick Start","id":"344","title":"Quick Start"},"345":{"body":"Full list of commands is available on snapshot-cli --help command. snapshot-trigger-service 0.1.0 USAGE: snapshot-cli.exe [OPTIONS] --endpoint FLAGS: -h, --help Prints help information -V, --version Prints version information OPTIONS: -e, --endpoint snapshot endpoint [env: SNAPSHOT_ENDPOINT=] -t, --token access token, which is necessary to perform client operations [env: SNAPSHOT_TOKEN=] SUBCOMMANDS: files retrieve files from snapshot (snapshot outcome etc.) health check if snapshot service is up help Prints this message or the help of the given subcommand(s) job job related commands Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Registration CLI » full list of available commands","id":"345","title":"full list of available commands"},"346":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, result-dir: path to folder which artifacts will be dumped (qr-code etc.), voting-tools: voting tools internal parameters section, bin: “voting-tools”, network: network type. Possible values: mainnet { \"testnet\": 1097911063 }, db: dbsync name, db-user: dbsync user, db-host: dbsync host, scale: voting power multiplier. If 1 then Lovelace is used voter-registration: path to jcli executable, vit-kedqr: path to jcli executable, token: token limiting access to environment. Must be provided in header API-Token for each request Example: \"port\": 8080, \"result-dir\": \"/persist/snapshot\", \"voting-tools\": { \"bin\": \"voting-tools\", \"network\": \"mainnet\", \"db\": \"dbsync\", \"db-user\": \"dbsync-admin\", \"db-host\": \"/alloc\", \"scale\": 1000000 }, \"token\": \"3568b599a65557b2a2e\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » Snapshot trigger service » Configuration » Configuration","id":"346","title":"Configuration"},"347":{"body":"Snapshot wormhole is a specialized Rest client API project. It has a builtin scheduler for transfering snapshot result file from snapshot-trigger-service to vit-servicing-station service.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » snapshot wormhole","id":"347","title":"snapshot wormhole"},"348":{"body":"In main project folder run: cd vit-testing/snapshot-wormhole\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » build","id":"348","title":"build"},"349":{"body":"","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run","id":"349","title":"run"},"35":{"body":"Stake can and need to be delegated to stake pool in the system. They can change over time with a publication of a new delegation certificate. Delegation certificate are a simple declaration statement in the form of: Account 'A' delegate to Stake Pool 'Z' Effectively it assigns the stake in the account and its associated UTXO stake to the pool it delegates to until another delegation certificate is made. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » General Concepts » Stake » Stake Delegation","id":"35","title":"Stake Delegation"},"350":{"body":"The simplest run configuration is available by using command: snapshot-wormhole --config snapshot-wormhole.config one-shot which will perform a single job of snapshot-trigger-service -> vit-servicing-station See config for configuration file details.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » quick start","id":"350","title":"quick start"},"351":{"body":"Two modes are available: one-shot - ends program after single job is done, schedule - run job continuously based on cron string. one-shot This mode can be helpful for debugging or testing purposes to verify if our configuration is correct and services are available. schedule Start scheduler based on input cron string. We are using custom cron string which allows to program scheduler based on seconds. The scheduling format is as follows: | sec | min | hour | day of month | month | day of week | year |\n| * | * | * | * | * | * | * | For example, to schedule each run per 15 minutes starting from now: snapshot-wormhole --config wormhole-config.json schedule --cron \"* 4/60 * * * *\" --eagerly full list of available commands Full list of commands is available on snapshot-wormhole --help command","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » snapshot wormhole » run modes","id":"351","title":"run modes"},"352":{"body":"This section describe configuration file which can be passed as argument when starting snapshot-wormhole:","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » Configuration","id":"352","title":"Configuration"},"353":{"body":"This section describe snapshot trigger service connection: address: snapshot trigger REST api address, token: optional access token,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » snapshot service","id":"353","title":"snapshot service"},"354":{"body":"This section describe servicing station service connection: address: servicing station service REST api address,,","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » servicing station service","id":"354","title":"servicing station service"},"355":{"body":"This section defines snapshot import parameters when applying snapshot to vit servicing station min_stake_threshold: minimum stake needed to participate in voting. Expressed in ada, voting_power_cap: maximum voting power before capping in order to satisfy fairness in voting. Expressed as a fraction number, direct_voters_group: group name for direct voters (determines part of REST path when accessing particular group with GET request), representatives_group: group name for representatives (determines part of REST path when accessing particular group with GET request) Example: { \"snapshot_service\": { \"address\": \"http://127.0.0.1:9090\", \"token\": \"RBj0weJerr87A\" }, \"servicing_station\": { \"address\": \"http://127.0.0.1:8080\" }, \"parameters\": { \"min_stake_threshold\": 500, \"voting_power_cap\": { \"Rational\": [\"Plus\",[1,2]] }, \"direct_voters_group\": \"direct\", \"representatives_group\": \"rep\" }\n}\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » snapshot wormhole » Configuration » parameters","id":"355","title":"parameters"},"356":{"body":"Valgrind is a Rest API project which is simplified proxy solution for catalyst backend.","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » valgrind","id":"356","title":"valgrind"},"357":{"body":"In main project folder run: cd valgrind\ncargo build and install: cargo install --path .","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » build","id":"357","title":"build"},"358":{"body":"The simplest configuration is available by using command: valgrind --block0_path block0.bin By default valgrind will be exposed at 127.0.0.1:8000","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » quick start","id":"358","title":"quick start"},"359":{"body":"Valgrind project provides also API for interacting with proxy server. Usage example: use valgrind::client::{ValgrindClient,ValgrindSettings}; let settings = RestSettings { enable_debug: false, use_https: false, certificate: None, cors: None, } let address = \"0.0.0.0:8080\".to_string(); let client = ValgrindClient::new(address, settings) let fragment_logs = client.fragment_logs()?;","breadcrumbs":"Catalyst testing User Guide » valgrind » valgrind » client","id":"359","title":"client"},"36":{"body":"The rust node comes with tools and help in order to quickly start a node and connect to the blockchain. It is compatible with most platforms and it is pre-packaged for some of them. Here we will see how to install jormungandr and its helper jcli and how to connect quickly to a given blockchain. There are three posible ways you can start jormungandr.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Quickstart","id":"36","title":"Quickstart"},"360":{"body":"This section describe configuration file which can be passed as argument when starting valgrind: address: address on which valgrind will be exposed. By default: 127.0.0.1:8000, vit-address: vit servicing station address. By default: 127.0.0.1:3030, node-address: node address. By default: 127.0.0.1:8080, block0-path: path to block0 executable, cert: path to certificate (for enabling https). Optional, key: path certificate key (for enabling https). Optional, Example: \"address\": \"127.0.0.1:8000\", \"vit-address\": \"127.0.0.1:3030\", \"node-address\": \"127.0.0.1:8080\", \"block0-path\": \"./block0.bin\", \"cert\": \"certificate.cert\", \"key\": \"certificate.key\",\n\" Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » valgrind » Configuration » Configuration","id":"360","title":"Configuration"},"361":{"body":"Vitup is a cli project which is capable to bootstrap catalyst backend which can be exercised by various tools. Initial purpose is to provide simple localhost backend for catalyst voting app.","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » vitup","id":"361","title":"vitup"},"362":{"body":"before building vitup all dependencies need to be installed. valgrind jormungandr vit-servicing-station then in order to build vitup in main project folder run: cargo build and install: cargo install --path vitup","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » build","id":"362","title":"build"},"363":{"body":"The simplest configuration is available by using command: vitup start quick default endpoint will be exposed at 0.0.0.0:80 all data dumped to .\\catalyst","breadcrumbs":"Catalyst testing User Guide » vitup » vitup » quick start","id":"363","title":"quick start"},"364":{"body":"Configuration file example is available under src/vit-testing/vitup/example/mock/config.yaml This section describe configuration file which can be passed as argument for vitup start mock command: pub struct Configuration { pub ideascale: bool, pub protocol: valgrind::Protocol,","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » Configuration","id":"364","title":"Configuration"},"365":{"body":"pub local: bool, } port: port on which registration-service will be exposed, token: token limiting access to environment. Must be provided in header API-Token for each request working-dir: path to folder which artifacts will be dumped (qr-code etc.), protocol: optional parameter if service shoudl be exposed through https. Then two sub-parameters need to be defined key_path and cert_path like in an example below: \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" } NOTE: certificates in resources folder are self-signed Example: { \"port\": 8080, \"working-dir\": \"./mock\", \"protocol\": { \"key_path\": \"./resources/tls/server.key\", \"cert_path\": \"./resources/tls/server.crt\" }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration » [serde(default)]","id":"365","title":"[serde(default)]"},"366":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation » Data Generation","id":"366","title":"Data Generation"},"367":{"body":"This section describe configuration file. It is passed as argument when starting vitup. It can also, in some cases, send to already running environments in order to restart them with new settings.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"367","title":"Configuration"},"368":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Initials","id":"368","title":"Initials"},"369":{"body":"Allows to provide initial voters and representatives which whose will be available in initial snapshot. see snapshot data creation guide for more details","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"369","title":"snapshot"},"37":{"body":"As described here . The passive Node is the most common type of Node on the network. It can be used to download the blocks and broadcast transactions to peers. However, it doesn’t have cryptographic materials or any mean to create blocks. This type of nodes are mostly used for wallets, explorers or relays.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a passive node in an existing network","id":"37","title":"As a passive node in an existing network"},"370":{"body":"Allows to provide initial addresses/voters which addresses would be put in block0. Supported syntax: above threshold Amount of wallets which receive more than value defined in static_data.voting_power parameter Example: { \"above_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses below threshold Amount of wallets which receive less than value defined in static_data.voting_power parameter Example: { \"below_threshold\":30, \"pin\":\"1234\"\n} Pin would be set globally for all 30 addresses around level Amount of wallets which have funds around defined level Example: { \"count\":30, \"level\":1000, \"pin\":\"1234\"\n} zero funds Amount of wallets which won’t have any funds in block0 Example: { \"zero_funds\":30, \"pin\":\"1234\"\n} named wallet Wallet with custom pin and arbitrary funds amount, Example: { \"name\":\"darek\", \"funds\":8000, \"pin\":\"1111\" }, external wallet Wallet with address and pin. For users who already generated address outside vitup. Example: { \"address\":\"ca1qknqa67aflzndy0rvkmxhd3gvccme5637qch53kfh0slzkfgv5nwyq4hxu4\", \"funds\":8000 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » block0","id":"370","title":"block0"},"371":{"body":"Allows to provide initial addresses/voters which addresses would be put in initial snapshot. Supported syntax: random Some number of random wallets which receive specified amount of voting power Example: { \"count\": 2, \"level\": 5000 }, external A single entry with specified voting key and voting power Example: { \"key\":\"3877098d14e80c62c071a1d82e3df0eb9a6cd339a5f66e9ec338274fdcd9d0f4\", \"funds\":300 } named A single entry with specified alias from block0 and optional voting power. If voting power is not defined it would be taken from block0 section. If vitup cannot find alias it will produce an error Example: { \"name\": \"darek\", \"funds\": 100 },","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » snapshot","id":"371","title":"snapshot"},"372":{"body":"","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote plan","id":"372","title":"vote plan"},"373":{"body":"Below parameters describe how long vote would be active, for how long users can vote and when tally period would begin. In cardano time is divided into epochs which consists of slots. There are 2 parameters that defines how long epoch should last, slot_duration and slots_per_epoch with equation: epoch_duration = slot_duration * slots_per_epoch. For example, for given: slot_duration = 2\nslots_per_epoch = 10 then epoch will lasts 20 seconds. vote_start, vote_tally, tally_end - describe 2 vote phases: from vote_start to vote_tally : casting vote period, where we gather votes. from vote_tally to tally_end: tallying vote period, where we gather voting results. Sll above parameters are expressed in epochs. Be aware that slot_duration and slots_per_epoch have influence on time voting phase would start. For example: start vote in 5 minutes, allow users to case vote for 20 minutes give 1 hour for tally operation our setup would be like below: \"vote_start\":1,\n\"vote_tally\":4,\n\"tally_end\":20,\n\"slots_per_epoch\":60, See jormungandr docs for more information. NOTE: slot_duration is defined in blockchain section of configuration file private If true, then voting is private otherwise public. This parameters basically controls if votes choices are encrypted or not. representatives_vote_plan TBD, currently not used","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » vote time","id":"373","title":"vote time"},"374":{"body":"\"vote_plan\": { \"vote_time\": { \"vote_start\": 13, \"tally_start\": 98, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true, \"representatives_vote_plan\": false }, }, blockchain Set of parameters which controls blockchain related configuration. See jormungandr docs for more information. slot_duration Describes how frequent block are produces by network. Slot duration is expressed in seconds. Cannot be longer that 128. block_content_max_size Describes how big a single block can be. Larger blocks can hold more transactions which results in faster transactions processing. However it put more requirements on space and network throughput. block0_time Optional parameter which defines start time of block0. It is useful when one want to defined voting phases that ends and starts precisely in required time. Otherwise block0_time is equal to current time when running vitup tx_max_expiry_epochs Optional parameter which defines what is the maximum duration (expressed in epochs) of transaction timeout. Usually it is equal to 1. consensus_leader_ids Allows to override randomly generated consensus leaders ids. Useful when we have our own pre-generated leaders keys for nodes. linear_fees Transactions fees which defined cost of transaction or vote. constant - constant fee added to each transaction coefficient - coefficient of each transaction output certificate - cost of sending certificate. constant + transaction.output * coefficient + certificate Example: \"linear_fees\": { \"constant\": 1, \"coefficient\": 1, \"certificate\": 2 }, Above configuration will result in: For transaction with 1 input and 1 output 1 + 1 * 1 + 0 = 2 For vote 1 + 0 * 1 + 2 = 3 committees Committee is a wallet that is capable of tallying voting results. This setting allows to use predefined committee rather than generate random by vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » example","id":"374","title":"example"},"375":{"body":"Section describes static data used for voting. Mostly defines parameters for servicing station","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » data","id":"375","title":"data"},"376":{"body":"Current fund related settings: options Defines options available for voters. Should be expressed as coma-separated values. For example: options: \"yes,no\" proposals Number of proposals available for voting challenges Number of challenges available for voting. Challenge is a container for proposals for the same domain reviews Number of reviews for proposals voting_power Threshold for voting participation, expressed in ADA fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime. This data will be shown to users after current voting will ends.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » current fund","id":"376","title":"current fund"},"377":{"body":"Limited subset of settings comparing to current_fund section for next funds fund_name Name of fund fund_id Id of the fund. This parameter also controls behavior of catalyst voting app. If it’s changed between two funds, voting app will refresh it state. dates proposal_submission_start Data in rfc3339 format. Defines proposal submission start datetime. insight_sharing_start Data in rfc3339 format. Defines proposal insight sharing start datetime. refine_proposals_start Data in rfc3339 format. Defines proposal refinement start datetime. finalize_proposals_start Data in rfc3339 format. Defines proposal finalization start datetime. proposal_assessment_start Data in rfc3339 format. Defines proposal assessment start datetime. assessment_qa_start Data in rfc3339 format. Defines proposal assessment qa start datetime. snapshot_time Data in rfc3339 format. Defines snapshot datetime. next_vote_start_time Data in rfc3339 format. Defines what is the date of next voting. This data will be shown to users after current voting will ends. next_snapshot_time Data in rfc3339 format. Defines next snapshot datetime.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » next funds","id":"377","title":"next funds"},"378":{"body":"Service related settings NOTE: this section is ignored when only generating data using vitup.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » service","id":"378","title":"service"},"379":{"body":"Control version of backend. Manipulating this parameter we can tell voting app to force user to self-update application.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » version","id":"379","title":"version"},"38":{"body":"The network could be running either bft or genesis consensus. In the former case the node must have the private key of a registered as a slot leader. For the latter the private keys of a registered stake pool are needed. More information here","breadcrumbs":"Core Ledger » Quickstart » Quickstart » As a node generating blocks in an existing network","id":"38","title":"As a node generating blocks in an existing network"},"380":{"body":"Controls protocol over which vitup is available for client","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » https","id":"380","title":"https"},"381":{"body":"{ \"initials\":{ \"snapshot\":{ \"tag\":\"daily\", \"content\":[ { \"count\":2, \"level\":1234 }, { \"name\":\"alice\" }, { \"name\":\"bob\", \"funds\":10001 } ] }, \"block0\":[ { \"above_threshold\":10, \"pin\":\"1234\" }, { \"name\":\"alice\", \"pin\":\"1234\", \"funds\":10000 }, { \"name\":\"bob\", \"pin\":\"1234\", \"funds\":10000 }, { \"zero_funds\":10, \"pin\":\"1234\" } ] }, \"vote_plan\":{ \"vote_time\":{ \"vote_start\":0, \"tally_start\":134, \"tally_end\":234, \"slots_per_epoch\":3600 }, \"private\":true }, \"blockchain\":{ \"slot_duration\":4, \"block_content_max_size\":20971520, \"linear_fees\":{ \"constant\":0, \"coefficient\":0, \"certificate\":0 } }, \"data\":{ \"current_fund\":{ \"options\":\"yes,no\", \"proposals\":1134, \"challenges\":23, \"reviews\":7045, \"voting_power\":450, \"fund_name\":\"Fund9\", \"fund_id\":9, \"dates\":{ \"insight_sharing_start\":\"2022-05-01T12:00:00Z\", \"proposal_submission_start\":\"2022-05-02T12:00:00Z\", \"refine_proposals_start\":\"2022-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2022-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2022-05-04T12:00:00Z\", \"assessment_qa_start\":\"2022-05-05T12:00:00Z\", \"snapshot_time\":\"2022-05-07T12:00:00Z\", \"next_snapshot_time\":\"2023-05-07T12:00:00Z\", \"next_vote_start_time\":\"2022-07-14T12:00:00Z\" } }, \"next_funds\":[ { \"fund_name\":\"Fund10\", \"fund_id\":10, \"dates\":{ \"insight_sharing_start\":\"2023-05-01T12:00:00Z\", \"proposal_submission_start\":\"2023-05-02T12:00:00Z\", \"refine_proposals_start\":\"2023-05-03T12:00:00Z\", \"finalize_proposals_start\":\"2023-05-04T12:00:00Z\", \"proposal_assessment_start\":\"2023-05-04T12:00:00Z\", \"assessment_qa_start\":\"2023-05-05T12:00:00Z\", \"snapshot_time\":\"2023-05-07T12:00:00Z\", \"voting_start\":\"2023-07-14T12:00:00Z\", \"voting_tally_end\":\"2023-07-14T12:00:00Z\", \"voting_tally_start\":\"2023-07-14T12:00:00Z\", \"next_snapshot_time\":\"2023-07-07T12:00:00Z\", \"next_vote_start_time\":\"2023-07-14T12:00:00Z\" } } ] }, \"version\":\"3.8\"\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Full Example","id":"381","title":"Full Example"},"382":{"body":"This section describe configuration section which can be passed as argument when starting vitup or send to already running environments in order to restart them through rest api.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Configuration","id":"382","title":"Configuration"},"383":{"body":"{ \"parameters\": { \"tag\": \"latest\" }, \"content\": [ { \"rep_name\": \"alice\", \"ada\": 1000 }, { \"rep_name\": \"clarice\", \"ada\": 1000 }, { \"name\": \"bob\", \"registration\": { \"target\": [ [\"alice\",1] ], \"slotno\": 0 }, \"ada\": 1000 }, { \"name\": \"david\", \"registration\": { \"target\": [ [\"clarice\",1] ], \"slotno\": 0 }, \"ada\": 1000 } ] Below more detailed explanation for each section element","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » Example","id":"383","title":"Example"},"384":{"body":"Snapshot parameters used when importing it to servicing station or mock. tag - snapshot tag which will be used when importing snapshot min_stake_threshold - Minimum lovelace which is required to participate in voting voting_power_cap - Maximum percentage of voting power before capping direct_voters_group - Name of direct registration holders representatives_group - Name of delegated registrations holders (representatives)","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » parameters","id":"384","title":"parameters"},"385":{"body":"Main content of snapshot","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » content","id":"385","title":"content"},"386":{"body":"For user convenience we allow untagged definition of actor. Actor can be representative or direct voter with some data. Depending on fields role is dynamically defined and user can focus only on scenario description pre-generated representative This variant will create new unique wallet with given ada amount rep_name - alias ada - voting power amount external representative Representative with just and voting key. Can be used for already existing wallet rep_name - alias voting_key - voting key in hex external delegator Delegator with just an address. Can be used for already existing wallet in the network name - alias address - address in hex pre-generated delegator Delegator with just an address. Can be used for already existing wallet in the network. Generated delegator will set up new mainnet wallet name - alias registration: registration definition which can be used to describe to which representative delegator delegates his voting power. Field need to define slot at which delegation occurs and distribution. Example: ... \"registration\": { \"target\": [ [ \"clarice\",1 ] ,[ \"alice\",2 ] ], \"slotno\": 0 }\n... Above example divides voting power into 3 parts and assign 1/3 to clarice and 2/3 to alice ada - ada amount Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Configuration » actor","id":"386","title":"actor"},"387":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Data Generation » Data Generation","id":"387","title":"Data Generation"},"388":{"body":"For developer convenience an in-memory backend is available. Idea is the same as above but env is more lightweight and does not spawn jormungandr or vit-servicing-station. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Mock","id":"388","title":"Mock"},"389":{"body":"Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Configuration","id":"389","title":"Configuration"},"39":{"body":"This is similar to the previous case, but configuring a genesis file is needed. Consult the Advanced section for more information on this procedure.","breadcrumbs":"Core Ledger » Quickstart » Quickstart » Creating your own network","id":"39","title":"Creating your own network"},"390":{"body":"vitup start mock --config example\\mock\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Start","id":"390","title":"Start"},"391":{"body":"For postman collection please visit: Requests collection List Files curl --location --request GET 'http://{mock_address}/api/control/files/list' Get File curl --location --request GET 'http://{mock_address}/api/control/files/get/{path_to_file}' Health curl --location --request GET 'http://{mock_address}/api/health' Change Fund Id curl --location --request POST 'http://{mock_address}/api/control/command/fund/id/{new_fund_id}' Add new fund curl --location --request PUT 'http://{mock_address}/api/control/command/fund/update' \\\n--header 'Content-Type: application/json' \\\n--data-raw '\n{ \"id\": 20, \"fund_name\": \"fund_3\", \"fund_goal\": \"How will we encourage developers and entrepreneurs to build Dapps and businesses on top of Cardano in the next 6 months?\", \"voting_power_threshold\": 8000000000, \"fund_start_time\": \"2022-05-04T10:50:41Z\", \"fund_end_time\": \"2022-05-04T11:00:41Z\", \"next_fund_start_time\": \"2022-06-03T10:40:41Z\", \"registration_snapshot_time\": \"2022-05-04T07:40:41Z\", \"next_registration_snapshot_time\": \"2022-06-02T10:40:41Z\", \"chain_vote_plans\": [ { \"id\": 2136640212, \"chain_voteplan_id\": \"ad6eaebafd2cca7e1829df26c57b340a98b9d513b7eddec8561883f1b99f3b9e\", \"chain_vote_start_time\": \"2022-05-04T10:50:41Z\", \"chain_vote_end_time\": \"2022-05-04T11:00:41Z\", \"chain_committee_end_time\": \"2022-05-04T11:10:41Z\", \"chain_voteplan_payload\": \"public\", \"chain_vote_encryption_key\": \"\", \"fund_id\": 20 } ], \"challenges\": [ { \"id\": 1, \"challenge_type\": \"community-choice\", \"title\": \"Universal even-keeled installation\", \"description\": \"Upgradable\", \"rewards_total\": 7686, \"proposers_rewards\": 844, \"fund_id\": 20, \"challenge_url\": \"http://schneider-group.info\", \"highlights\": { \"sponsor\": \"Kreiger and Wuckert and Sons\" } } ]\n} ' Accept all Fragments Makes mock to accept all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/accept' Reject all Fragments Makes mock to reject all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reject' Hold all Fragments Makes mock to hold all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/pending' Reset Fragment strategy Makes mock to validate all further fragments sent to environment curl --location --request POST 'http://{mock_address}/api/control/command/fragments/reset' Make backend unavailable Mock will reject all connections (returns 500) curl --location --request POST 'http://{mock_address}/api/control/command/available/false' Make backend available Mock will accept all connections curl --location --request POST 'http://{mock_address}/api/control/command/available/true' Make account endpoint unavailable Mock will reject n calls to account endpoint and as a result voting app won’t receive voting power for some time. This endpoint assume that one who changes block-account endpoint knows what is the frequency of calls from client and ultimately can be translated to some time of unavailability. curl --location --request POST 'http://{mock_address}/api/control/command/block-account/{number_of_calls_to_reject}' Make account endpoint available Mock will reset account endpoint unavailability curl --location --request POST 'http://{mock_address}/api/control/command/block-account/reset' Add new voters snapshot for specific tag Add (or overwrite) voters snapshot for this particular tag curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/add/{tag}' \\\n--header 'Content-Type: application/json' \\\n--data-raw ' [{\"voting_group\":\"direct\",\"voting_key\":\"241799302733178aca5c0beaa7a43d054cafa36ca5f929edd46313d49e6a0fd5\",\"voting_power\":10131166116863755484},{\"voting_group\":\"dreps\",\"voting_key\":\"0e3fe9b3e4098759df6f7b44bd9b962a53e4b7b821d50bb72cbcdf1ff7f669f8\",\"voting_power\":9327154517439309883}]' Create new voters snapshot for specific tag Create snapshot json which can be uploaded to mock by using ../snapshot/add command. See mock configuration for more details. Example: curl --location --request POST 'http://{mock_address}/api/control/command/snapshot/create' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"tag\": \"daily\", \"content\": [ { \"count\": 2, \"level\": 5000 }, { \"name\": \"darek\", \"funds\": 100 }, { \"key\":\"318947a91d109da7109feaf4625c0cc4e83fe1636ed19408e43a1dabed4090a3\", \"funds\":300 }\n]\n}' Reset environment Resets environment data curl --location --request POST 'http://{mock_address}/api/control/command/reset' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{ \"initials\": { \"block0\": [ { \"above_threshold\": 10, \"pin\": \"1234\" }, { \"name\": \"darek\", \"pin\": \"1234\", \"funds\": 10000 } ] }, \"vote_plan\": { \"vote_time\": { \"vote_start\": 0, \"tally_start\": 100, \"tally_end\": 140, \"slots_per_epoch\": 3600 }, \"private\": true }, \"blockchain\": { \"slot_duration\": 2, \"block_content_max_size\": 20971520, \"block0_time\": \"2022-03-17T05:00:00Z\", \"linear_fees\": { \"constant\": 0, \"coefficient\": 0, \"certificate\": 0 } }, \"data\": { \"options\": \"yes,no\", \"snapshot_time\": \"2022-01-06T11:00:00Z\", \"next_snapshot_time\": \"2022-04-07T11:00:00Z\", \"next_vote_start_time\": \"2022-04-11T11:00:00Z\", \"proposals\": 936, \"challenges\": 25, \"reviews\": 5190, \"voting_power\": 450, \"fund_name\": \"Fund7\", \"fund_id\": 6 }, \"version\":\"3.6\"\n}' see data generation guide for more details Control Health Checks if mock is up curl --location --request POST 'http://{mock_address}/api/control/health' Logs Mock stores record of each request send to it. This endpoint gets all logs from mock curl --location --request POST 'http://{mock_address}/api/control/logs/get'","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin rest commands","id":"391","title":"Admin rest commands"},"392":{"body":"Admin CLI is an alternative for all above calls, available under vitup project. example: vitup-cli --endpoint {mock} disruption control health Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock » Admin cli","id":"392","title":"Admin cli"},"393":{"body":"Mock farm is a simple extension for mock service. It allows to run more that one mock at once and give more control to user in term of starting and stopping particular mock instance.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Mock Farm","id":"393","title":"Mock Farm"},"394":{"body":"This section describe configuration file which can be passed as argument for snapshot service: port: port on which registration-service will be exposed, working_directory: path to folder which config files will be dumped, mocks-port-range: range of ports assigned for usage, protocol: decide whether mock farm should be exposed as http or https, local: should service be exposed on all network interfaces or only 127.0.0.1, token: token limiting access to environment. Must be provided in header API-Token for each request Note: it is recommended to run command from vit-testing/vitup folder (then no explicit paths are required to be provided). Configuration file example is available under vit-testing/vitup/example/mock-farm/config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Configuration","id":"394","title":"Configuration"},"395":{"body":"vitup start mock-farm --config example\\mock\\mock-farm\\config.yaml","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Start","id":"395","title":"Start"},"396":{"body":"OpenApi Requests collection Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Mock Farm » Documentation","id":"396","title":"Documentation"},"397":{"body":"In order to take out the burden of providing entire configuration vitup has two configuration modes: quick - which runs on defaults and allow user to override most important parameters using cli arguments: vitup start quick advanced - which allows to defined full configuration as well as external static files for proposals and challenges vitup start advanced","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Configuration modes","id":"397","title":"Configuration modes"},"398":{"body":"There are 4 run modes available in vitup: interactive - where user can push some fragments or query status of nodes endless - [Default] just simple run until stopped by user service - additional manager service will be published at 0.0.0.0:3030. They allow to control (stop/start) and provides resources over http (qr codes or secret keys) mock - lightweight version of backend with does not spawn any jormungandr or vit-servicing-station services. Mock is also capable of controlling more backend aspect than normal deployment (cut off the connections, rejects all fragments.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Run Modes","id":"398","title":"Run Modes"},"399":{"body":"There are two ways of starting vitup in endless mode. One with limited configuration and one with giving full control. vitup start quick --mode endless .. or vitup start advanced --mode endless ..","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Endless mode","id":"399","title":"Endless mode"},"4":{"body":"Jörmungandr refers to the Midgard Serpent in Norse mythology. It is a hint to Ouroboros , the Ancient Egyptian serpent, who eat its own tail, as well as the IOHK paper on proof of stake.","breadcrumbs":"Core Ledger » Core Ledger » Mythology","id":"4","title":"Mythology"},"40":{"body":"The software is bundled with 2 different command line software: jormungandr : the node; jcli : Jörmungandr Command Line Interface, the helpers and primitives to run and interact with the node.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Command line tools","id":"40","title":"Command line tools"},"400":{"body":"vitup start quick --mode service .. or vitup start advanced --mode service .. Once environment is up one can check status or modify existing environment:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Service mode","id":"400","title":"Service mode"},"401":{"body":"start - in order to start new voting stop - stops currently running vote backend (usually it takes 1 min to stop it) status - check status of environment: Idle - environment is not started Starting - environment is starting, please wait until its status is Running, Running - environment is not running and should be accessible, Stopping - environment is stopping, please wait until its Idle to start it with different parameters, files: In order to get qr-codes or secret files from env, two operations are provided: List Files - list all files in data directory for current run Get File - downloads particular file which is visible in List Files operation result","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Admin Operations","id":"401","title":"Admin Operations"},"402":{"body":"Voting backend admin console is an REST API accessible over http or https on port 3030. Using POST/GET http methods admin can send some operations to environment. There are various apps capable of sending REST commands. The simplest is to download Postman and use UI to fire up commands. Download postman: https://www.postman.com/downloads/ Review quick guide, how to send dummy request: https://learning.postman.com/docs/getting-started/sending-the-first-request/ Review guide, how to send different requests with arguments: https://learning.postman.com/docs/sending-requests/requests/ Available commands:","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » how to send operations","id":"402","title":"how to send operations"},"403":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/command/status Response Example: Running","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » check environment status","id":"403","title":"check environment status"},"404":{"body":"Default parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start Response Example: start event received Custom parameters: Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/start/default BODY: json with configuration Response Example: start event received This requests need to pass environment configuration file in Body. stop environment Request Type: POST Endpoint : http://{env_endpoint}:3030/api/control/command/stop Response Example: stop event received","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » start environment","id":"404","title":"start environment"},"405":{"body":"Request Type: GET Endpoint : http://{env_endpoint}:3030/api/control/files/list Response Example: { \"content\": { \"network\": [ \"Leader4/node.log\", \"Leader4/node_config.yaml\", \"Leader4/node_secret.yaml\", \"vit_station/vit_config.yaml\", \"initial_setup.dot\", \"Leader1/node.log\", \"Leader1/node_config.yaml\", \"Leader1/node_secret.yaml\", \"Leader3/node.log\", \"Leader3/node_config.yaml\", \"Leader3/node_secret.yaml\", \"Leader2/node.log\", \"Leader2/node_config.yaml\", \"Leader2/node_secret.yaml\", \"Wallet_Node/node.log\", \"Wallet_Node/node_config.yaml\", \"Wallet_Node/node_secret.yaml\" ], \"qr-codes\": [ \"qr-codes/zero_funds_12_0000.png\", \"qr-codes/wallet_25_above_8000_1234.png\", \"qr-codes/wallet_12_below_8000_9807.png\", \"qr-codes/wallet_30_below_8000_9807.png\" ], \"private_keys\": [ \"wallet_13_below_8000\", \"wallet_26_below_8000\", \"wallet_23_above_8000\", \"wallet_26_above_8000\" ], \"private_data\": [ \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/communication_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/encrypting_vote_key.sk\", \"fund_3_committees/ed25519_pk192pta739an4q6phkr4v7pxpgna5544mkkfh8ce6p0auxmk5j89xs0706fp/member_secret_key.sk\" ], \"blockchain\": [ \"block0.bin\", \"genesis.yaml\" ] }, \"root\": \"./vit_backend\", \"blockchain_items\": [ \"block0.bin\", \"genesis.yaml\" ]\n}","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » list files","id":"405","title":"list files"},"406":{"body":"User can list or view files available for current voting. To list all available files /api/control/files/list endpoint can be utilized. Then relative path can be provided in /api/control/files/get/.. endpoint. For example: http://{env_endpoint}:3030/api/control/files/get/qr-codes/zero_funds_12_0000.png Request Type: GET Endpoint : http://{env_endpoint}:3030/files/get/{file_path }","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » get files","id":"406","title":"get files"},"407":{"body":"TBD Found a bug? Edit this page on GitHub.","breadcrumbs":"Catalyst testing User Guide » vitup » Configuration modes » Interactive mode","id":"407","title":"Interactive mode"},"408":{"body":"","breadcrumbs":"Core VIT Servicing Station » Core VIT Servicing Station » Core VIT Servicing Station","id":"408","title":"Core VIT Servicing Station"},"409":{"body":"Vit servicing station tests project is a container project vit-servicing-station tests. Tests are validating server correctness, stability and interaction with database/rest api. Also there are non-functional tests which verify node durability and reliability","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » vit-servicing-station-tests","id":"409","title":"vit-servicing-station-tests"},"41":{"body":"","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Installation","id":"41","title":"Installation"},"410":{"body":"","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Quick start","id":"410","title":"Quick start"},"411":{"body":"In order to run test vit-servicing-station-server need to be installed or prebuilt.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Prerequisites","id":"411","title":"Prerequisites"},"412":{"body":"In order to build vit-servicing-station in main project folder run: cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Start tests","id":"412","title":"Start tests"},"413":{"body":"Test are categories based on application/layer and property under test (functional or non-functional: load, perf etc.)","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Tests categories","id":"413","title":"Tests categories"},"414":{"body":"cd vit-servicing-station-tests\ncargo test","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run all functional tests","id":"414","title":"How to run all functional tests"},"415":{"body":"cd vit-servicing-station-tests\ncargo test --features non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run performance tests","id":"415","title":"How to run performance tests"},"416":{"body":"cd vit-servicing-station-tests\ncargo test --features soak,non-functional","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » How to run endurance tests","id":"416","title":"How to run endurance tests"},"417":{"body":"Functional tests are run on each PR. Performance and testnet integration tests are run nightly Found a bug? Edit this page on GitHub.","breadcrumbs":"Core VIT Servicing Station » vit-servicing-station-tests » Frequency","id":"417","title":"Frequency"},"418":{"body":"","breadcrumbs":"Unified Platform » Unified Platform » Unified Platform","id":"418","title":"Unified Platform"},"419":{"body":"The Catalyst-Cardano bridge is a custom bridge interface between Catalyst and a Cardano Node. It tracks data relevant to the unified Catalyst system, as it appears on the Cardano network, in real-time. The bridge is not just a data logger, it also: Acts as an event trigger for other Catalyst systems. Acts as an information server to data pertinent to Catalyst operations.","breadcrumbs":"Unified Platform » Overview » Overview » Overview","id":"419","title":"Overview"},"42":{"body":"This is the recommended method. Releases are all available here .","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From a release","id":"42","title":"From a release"},"420":{"body":"Catalyst has used a tool called dbsync to aquire “snapshot” data. A “snapshot” is a record at a moment in time of all staked ADA in the network. dbsync is a tool which captures a relational interpretation of the Cardano blockchain to an SQL database. This is useful for general-purpose queries of information contained on Cardano, but to query bulk data it is slow, and complex. The relational structure means that individual transactions need to be pieced together from multiple tables. Even with indexes this exerts a heavy efficiency toll when a single transactions state is queried. When bulk data is queried, it results in a large and complex query which takes a very long time to run (on the order of hours). dbsync itself takes a very very long time to sync to the blockchain, and get progressively slower. As at mid january 2023, one dbsync instance in a production environment took more than 5 days to sync with a local node. It is supposed to be possible to recover dbsync database from a backup, however experience shows this is a time consuming process itself. It took more than 12 hours just to load the backup image into the database, but then the node would not sync with main net. These issues cause excessive complexity, slow operation and fragile environments. Project Catalyst is also not in control of the dbsync database schema, and the schema can change between revisions. This could mean the entire database needs to be re-synched (taking days), or the schema changes and breaks tools which rely on the schema.","breadcrumbs":"Unified Platform » Overview » Overview » Issues with the previous systems","id":"420","title":"Issues with the previous systems"},"421":{"body":"The solution detailed here is a new bridge service, that has the following features: Can sync from multiple redundant nodes. Does not need to trust any single node (so it can sync from public nodes). Focused on data and events required by Project Catalyst: Registration Records at all points in the past. Staked ADA at all points in the past. Minimum necessary state to track staked ADA. More efficient database schema. Schema is not accessed directly but via a simple API Service. Prevents downstream consumers from breaking if the DB Schema needs to change. Does not need to snapshot: Data is accumulated progressively, not at instants in time. Data storage allows the state at any past time to be calculated simply and efficiently. Is easy to independently deploy by the Catalyst Community, so they can independently validate data reported by Project Catalyst. Distributed use does not rely on any Catalyst-supplied data, which improves audibility and trust.","breadcrumbs":"Unified Platform » Overview » Overview » The solution","id":"421","title":"The solution"},"422":{"body":"The System has these components: 1 or more Cardano Nodes (Preferably 2 or more) A Pipeline which processes the data from the nodes: Read blocks from multiple nodes Validate blocks by independent reference (A valid block has n independent copies) Queue valid blocks for processing. Read valid blocks from the queue and process every transaction in the block. Calculate the change in staked ADA caused by all transactions in the block. Validate all Registration Records in the block: Record all validated registrations. Record all in-valid registrations (including the reason the registration is invalid). Queue the complete block of transactions, ledger state and registration updates for storing and alerting. Lock the Databases for writing (Transactional) Check if the block being recorded is new: New: Record the updated current ledger state. Record the staked ADA for every stake address which changed in this block (time series record) Record the registrations (time series record) Send alerts to all upstream subscribers that subscribed events have changed. Commit the transaction (unlocks the DB) Already Recorded: Abort the write transaction (release the DB) Read the recorded data from the DB Validate the DB data with the data calculated from the block. If there is any discrepancy, LOG errors and send configured alerts. A REST/HTTP service to report catalyst bridge data Report current staked/unpaid rewards in ADA for any stake address. Report staked/unpaid rewards in ADA for any stake address, at any past time. Report staked/unpaid rewards over a period of previous time, with various processing: Daily Averages All records other Calculate voting power given a set of voting power options for a single address, or all registrations of a particular type. Snapshot (instantaneous) voting power Time window based voting power calculation Linear vs functional voting power function of raw ADA. Capped at a particular % other parameters which can affect the voting power calculation. Catalyst Event stream published via: Kafka other","breadcrumbs":"Unified Platform » Overview » Overview » Architecture Overview","id":"422","title":"Architecture Overview"},"423":{"body":"ContractKeycontract_key: byteshash(concat(contract_hash, parameter_hash))ContractHashcontract_hash : byteshash(Contract.as_bytes())ParameterHashparameter_hashhash(Paramters.as_bytes())ContractCompiled Wasmas_bytes()ParametersStructured Parameter Dataas_bytes() hunger noticedchoose recipedesired dish?","breadcrumbs":"Unified Platform » Overview » Overview » Architectural Diagram","id":"423","title":"Architectural Diagram"},"424":{"body":"The Cardano-Catalyst bridge is an essential and integral part of the Catalyst Unified backend. However, it is also a useful and capable tool in its own right. It has a secondary use case of allowing the community to INDEPENDENTLY validate their registrations and voting power. Accordingly, it is developed as a stand-alone service. This means it can be easily distributed and deployed INDEPENDENTLY of the rest of the catalyst unified backend services. It has two internal long running tasks. Read, validate and record latest registrations/delegations from the linked block chain. Read and record running total balance and unclaimed rewards for every stake address. It also exposes a Voting Power API. Get voting power for Stake Address or Voting Key as at (timestamp). Would respect the registrations valid at that time. So if you asked for your voting power but you were delegated, the API would return you have X personal voting power, and Y..Z Voting power of yours has been delegated to Keys A-B. Options: Max Registration Age (So regitrations before this date/time are not considered). Must have valid payment address. (So we can later make a valid payment address a necessity if required, and this would also exclude just using stake address.) Voting power calculation type Absolute on the time of snapshot Average Maximum daily value Parameter: Length of time to average over (in days). Voting power linearity Linear (1 ADA = X voting power). Where X is a parameter. Logarithmic (Voting power is attenuated by a logarithmic function). Would need parameters to define the curve. Other?? Get Registration/Delegation information for a Stake Address/Voting Key as at a time. Similar to above but does NOT do any Get all active registrations as at a time. Time and max age of registrations are parameters. If stake addresses without registration are included in the output. What do you think? (edited)","breadcrumbs":"Unified Platform » Overview » Overview » Integration to the Catalyst Unified Backend","id":"424","title":"Integration to the Catalyst Unified Backend"},"425":{"body":"The bridge will need at least 1, and preferably more Cardano Nodes to read blocks from. The Bridge will employ a local consensus model, in place of the absolute trust of a single node. Part of the configuration of the bridge will need to be: the addresses of the available nodes that may be requested for new blocks. the number of nodes which must send concurring blocks before a block is accepted. the number of blocks to retrieve in advance of the current head. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Cardano Nodes » Cardano Nodes","id":"425","title":"Cardano Nodes"},"426":{"body":"","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Bridge Pipeline » Bridge Pipeline","id":"426","title":"Bridge Pipeline"},"427":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Bridge Pipeline » Block Reader » Block Reader","id":"427","title":"Block Reader"},"428":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » REST HTTP Service » REST HTTP Service","id":"428","title":"REST HTTP Service"},"429":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Event Stream » Event Stream","id":"429","title":"Event Stream"},"43":{"body":"Jörmungandr’s code source is available on github . Follow the instructions to build the software from sources.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » From source","id":"43","title":"From source"},"430":{"body":"The database is private to the catalyst-cardano bridge. Access to it is through the Catalyst-Cardano bridge service. The schema for this database will be managed by the service and is expected to evolve. The concrete schema will be defined as the service is developed, and responsive to the needs of the service. Rather than defining an abstract “ideal” schema in advance, and then being tied to an inefficient implementation.","breadcrumbs":"Unified Platform » Overview » Database » Database » Database","id":"430","title":"Database"},"431":{"body":"Initially, the service will target and store data in Postgresql . However, it should be written in such a way that we can easily replace Postgresql with another DB, such as SurrealDB . To achieve this, database interactions should be contained to a crate which abstracts these interactions. For speed, the service should ALSO attempt to cache as much state internally as it can. However it must be kept in mind that multiple services can and will update the backing database. Accordingly, the internal state should be checked and refreshed/updated as required.","breadcrumbs":"Unified Platform » Overview » Database » Database » Servers","id":"431","title":"Servers"},"432":{"body":"There will initially be three logical databases, though they will NOT be in separate schemas and queries can join information between them. Registration Database Staked ADA Database Transaction State Database","breadcrumbs":"Unified Platform » Overview » Database » Database » High-Level Data Design","id":"432","title":"High-Level Data Design"},"433":{"body":"There will be a Registration Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Registrations Database","id":"433","title":"Registrations Database"},"434":{"body":"The data needed to be stored in each registration record is: The time and date the registration was made. Derived from the block date/time on Cardano, NOT the time it was detected. The location of the transaction on the blockchain. Allows the transaction to be verified against the blockchain. The raw contents of the transaction. The full raw transaction in binary. Allows information not directly pertinent to Catalyst to be retained. The Type of registration. CIP-15 CIP-36 Others Currently, there are only CIP-15 and CIP-36 voter registrations, however, there WILL be others. Invalidity Report Is the registration transaction Valid according to Catalyst transaction validity rules? true - Then this field is NULL. false - then this field contains a JSON formatted report detailing WHY it was invalid. Registration specific fields Fields which represent the meta-data of the registration itself. These fields need to be able to be efficiently searched.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Data","id":"434","title":"Data"},"435":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Queries","id":"435","title":"Queries"},"436":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. Return the MOST current registration.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » Current Voter Registration","id":"436","title":"Current Voter Registration"},"437":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Valid - Must the registration be valid? (Tristate: True, False, None) True - Only return valid registrations. False - Only return invalid registrations IF there is no newer valid registration. None - Return the most recent registration, Valid or not. For each unique stake address: Return the MOST current registration. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Registrations Database » All Current Voter Registrations","id":"437","title":"All Current Voter Registrations"},"438":{"body":"There will be a Staked ADA Database. This is a time-series database, which means that updates do not replace old records, they are time-stamped instead. This allows for the state “at a particular time” to be recovered without recreating it.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked ADA Database","id":"438","title":"Staked ADA Database"},"439":{"body":"The data needed to be stored in each staked ADA record is: The Stake address. The time and date the ADA staked/rewarded changed. Derived from the block date/time on Cardano, NOT the time it was detected. IF the staked ADA changed MULTIPLE times in the same block: this record contains the total at the END of all updates. The block on the blockchain when this stake address total changed. Allows the transaction/s to be verified against the blockchain. The total staked ADA as at this Block. The total unpaid-rewards ADA as at this Block. Rewards are earned for stake addresses at the end of epochs. They are specially accounted for and need to be withdrawn. This total is the total of all ADA which has been awarded to the stake address but NOT yet withdrawn. Note: ONLY stake addresses which CHANGE are recorded. It’s possible (probable?) that ONLY one of the total staked ADA or total unpaid rewards ADA will update at a time in a single block. However, regardless of which total updates, the record must faithfully record the total current at that time for both. For example: Staked ADA starts at 1234 and Unpaid Rewards ADA starts at 95. At 12:43 Staked ADA changes to 1200 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 95. At 14:55 Unpaid Rewards changes to 143 A record is emitted for 12:43 where staked-ada = 1200 and unpaid-rewards = 143.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Data","id":"439","title":"Data"},"44":{"body":"All commands come with usage help with the option --help or -h. For jcli, it is possible to generate the auto completion with: jcli auto-completion bash ${HOME}/.bash_completion.d Supported shells are: bash fish zsh powershell elvish Note: Make sure ${HOME}/.bash_completion.d directory previously exists on your HD. In order to use auto completion you still need to: source ${HOME}/.bash_completion.d/jcli.bash You can also put it in your ${HOME}/.bashrc. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Command line tools » Help and auto completion","id":"44","title":"Help and auto completion"},"440":{"body":"Examples of Common Queries:","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Queries","id":"440","title":"Queries"},"441":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). Stake Address - the Stake Address. Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Current Staked ADA","id":"441","title":"Current Staked ADA"},"442":{"body":"Given: AsAt - The time the registration must be valid by. Window - Optional, the maximum age of the registration before AsAt (Defaults to forever). For each unique stake address: Return the MOST current Total ADA and Unpaid Rewards ADA for that address.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » All Current Staked ADA","id":"442","title":"All Current Staked ADA"},"443":{"body":"AsAt - The time the registration must be valid by. Age - The Oldest record to return. For the period requested return a list of all staked balances where each record in the list is: date-time - The time this balance applies to. slot - The slot on the Cardano blockchain the balance changed in. staked - The total Staked at this time. rewarded - The total Unclaimed rewards at this time. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Staked ADA Database » Staked Balances for a period","id":"443","title":"Staked Balances for a period"},"444":{"body":"This is NOT a time-series database, it tracks: the current state of the sync from the block chain all current UTXO’s any other data it needs to calculate staked-ADA changes as blocks arrive. It is updated to track current state and is not historical. This state is updated atomically, along with: The staked ADA database The registration database This ensures that the DB is always in-sync with discrete minted blocks on the block-chain. The DB NEVER store a partial block update. Data There is no firm specification of the data that needs to be stored. It should be adapted to efficiently and quickly allow for the functions of the process to execute. The ONLY critical information that it contains is the current block last synced. All other information and the structure of it will need to be decided during implementation. Found a bug? Edit this page on GitHub.","breadcrumbs":"Unified Platform » Overview » Database » Transaction State Database » Transaction State Database","id":"444","title":"Transaction State Database"},"445":{"body":"","breadcrumbs":"Rust API » Rust API » Rust API","id":"445","title":"Rust API"},"446":{"body":"","breadcrumbs":"Rust API » Rust API Documentation and Packages » Rust API Documentation and Packages","id":"446","title":"Rust API Documentation and Packages"},"447":{"body":"blockchain chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser","breadcrumbs":"Rust API » Rust API Documentation and Packages » blockchain","id":"447","title":"blockchain"},"448":{"body":"db-sync-explorer jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » db-sync-explorer","id":"448","title":"db-sync-explorer"},"449":{"body":"explorer : explorer service for jormungandr cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » explorer : explorer service for jormungandr","id":"449","title":"explorer : explorer service for jormungandr"},"45":{"body":"In order to start the node, you first need to gather the blockchain information you need to connect to. the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. These information are essentials to start your node in a secure way. The genesis block is the first block of the blockchain. It contains the static parameters of the blockchain as well as the initial funds. Your node will utilise the Hash to retrieve it from the other peers. It will also allows the Node to verify the integrity of the downloaded genesis block . The trusted peers are the nodes in the public network that your Node will trust in order to initialise the Peer To Peer network.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting a passive node","id":"45","title":"Starting a passive node"},"450":{"body":"integration-tests catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit iapyx catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vitup catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-tools chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-trigger-service catalyst-toolbox : Rust based CLI utility for catalyst operations chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-storage chain-time chain-core chain-ser chain-ser jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-integration-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hersir : Hersir is a simple command line tool that lets you deploy a network of Jormungandr nodes chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes symmetric-cipher thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes chain-addr chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit scheduler-service-lib jortestkit signals-handler snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit valgrind chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-tests chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit voting_tools_rs mainnet-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » integration-tests","id":"450","title":"integration-tests"},"451":{"body":"jormungandr : Midgard Serpent cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-network chain-crypto typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandr : Midgard Serpent","id":"451","title":"jormungandr : Midgard Serpent"},"452":{"body":"jormungandrwallet chain-addr chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-ser wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » jormungandrwallet","id":"452","title":"jormungandrwallet"},"453":{"body":"mjolnir chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit loki : Loki is a simple command line tool that lets you deploy an adversarial Jormungandr node with a REST interface chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit thor chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-automation cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-storage chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jcli : Midgard Serpent chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes jortestkit","breadcrumbs":"Rust API » Rust API Documentation and Packages » mjolnir","id":"453","title":"mjolnir"},"454":{"body":"settings","breadcrumbs":"Rust API » Rust API Documentation and Packages » settings","id":"454","title":"settings"},"455":{"body":"sparse-array","breadcrumbs":"Rust API » Rust API Documentation and Packages » sparse-array","id":"455","title":"sparse-array"},"456":{"body":"vit-servicing-station-cli vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-cli","id":"456","title":"vit-servicing-station-cli"},"457":{"body":"vit-servicing-station-server vit-servicing-station-lib chain-ser jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes snapshot-lib chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes","breadcrumbs":"Rust API » Rust API Documentation and Packages » vit-servicing-station-server","id":"457","title":"vit-servicing-station-server"},"458":{"body":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-vote chain-core chain-ser chain-crypto typed-bytes symmetric-cipher wallet-core chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation symmetric-cipher wallet cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-path-derivation chain-time chain-core chain-ser chain-ser hdkeygen cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-crypto typed-bytes chain-path-derivation imhamt jormungandr-lib : Data structures and formats used by Jormungandr node API and configuration files cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-impl-mockchain cardano-legacy-address : Support for the useful part of legacy cardano address chain-addr chain-core chain-ser chain-crypto typed-bytes chain-core chain-ser chain-crypto typed-bytes chain-ser chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes imhamt sparse-array typed-bytes chain-time chain-core chain-ser chain-ser chain-vote chain-core chain-ser chain-crypto typed-bytes typed-bytes Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » Rust API Documentation and Packages » wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology","id":"458","title":"wallet-wasm-js : Wallet functionalities to interact with Jörmungandr This package profiles all that is needed to have an healthy and secure interaction with Jörmungandr blockchain technology"},"459":{"body":"This guide is intended to be a set of guidelines, not hard rules. These represent the default for Rust code. Exceptions can (and sometimes should) be made, however: They should have a comment explaining what is special about this code which means the rule shouldn’t apply here. Exceptions should be highlighted in the PR and discussed with the team. 🦀 Rust Style Guide Toolchain Basic Rules Creating a new crate Exceptions for clippy Guidelines Prefer references over generics Abbreviations and naming things General advice around names Pay attention to the public API of your crate Type safety Use newtypes (a.k.a. microtypes) Don’t over-abstract Unsafe code Docs Doctests Write code as if it’s going to be in a web server Error handling Handling expected errors Use thiserror for recoverable errors Use color_eyre for unrecoverable errors","breadcrumbs":"Rust API » 🦀 Rust Style Guide » 🦀 Rust Style Guide","id":"459","title":"🦀 Rust Style Guide"},"46":{"body":"Your node configuration file may look like the following:","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » The node configuration","id":"46","title":"The node configuration"},"460":{"body":"We use the latest stable version of Rust. You can get an up-to-date toolchain by running nix develop. If you’re not a Nix user, make sure you have the correct versions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Toolchain","id":"460","title":"Toolchain"},"461":{"body":"Formatting is “whatever rustfmt does”. In cases where rustfmt doesn’t yet work (i.e. macros, let-else), try to stay consistent with the rest of the codebase. Clippy should be used whenever possible, with pedantic lints turned on. There are some lints (particularly those from pedantic) that are generally unhelpful, often due to high false positive rates There is a list of known exceptions that can be added to if you run into anything particularly bad. Clippy is not enabled for older parts of the codebase. This is allowed for legacy code, but any new code should have clippy enabled. We’re actively working to get it enabled on everything Avoid raw identifiers. Instead, use abbreviations/misspellings (i.e. r#crate -> krate, r#type -> ty, etc) TLDR: run: cargo fmt\ncargo clippy\ncargo `clippy` --all-features before submitting a PR","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Basic Rules","id":"461","title":"Basic Rules"},"462":{"body":"We add the following preamble to all crates’ lib.rs: #![warn(clippy::pedantic)]\n#![forbid(clippy::integer_arithmetic)]\n#![forbid(missing_docs)]\n#![forbid(unsafe_code)]\n#![allow(/* known bad lints outlined below */)] We enable #![forbid(missing_docs)] for a couple of reasons: it forces developers to write doc comments for publicly exported items it serves as a reminder that the item you’re working on is part of your public API We enable #![forbid(unsafe_code)] to reinforce the fact that unsafe code should not be mixed in with the rest of our code . More details are below. We enable #![forbid(integer_arithmetic)] to prevent you from writing code like: let x = 1;\nlet y = 2;\nlet z = x + y; Why is this bad? Integer arithmetic may panic or behave unexpectedly depending on build settings. In debug mode, overflows cause a panic, but in release mode, they silently wrap. In both modes, division by 0 causes a panic. By forbidding integer arithmetic, you have to choose a behaviour, by writing either: a.checked_add(b) to return an Option that you can error-handle a.saturating_add(b) to return a + b, or the max value if an overflow occurred a.wrapping_add(b) to return a + b, wrapping around if an overflow occurred By being explicit, we prevent the developer from “simply not considering” how their code behaves in the presence of overflows. In a ledger application, silently wrapping could be catastrophic, so we really want to be explicit about what behaviour we expect.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Creating a new crate","id":"462","title":"Creating a new crate"},"463":{"body":"These lints are disabled: clippy::match_bool - sometimes a match statement with true => and false => arms is sometimes more concise and equally readable clippy::module_name_repetition - warns when creating an item with a name than ends with the name of the module it’s in clippy::derive_partial_eq_without_eq - warns when deriving PartialEq and not Eq. This is a semver hazard. Deriving Eq is a stronger semver guarantee than just PartialEq, and shouldn’t be the default. clippy::missing_panics_doc - this lint warns when a function might panic, but the docs don’t have a panics section. This lint is buggy, and doesn’t correctly identify all panics. Code should be written to explicitly avoid intentional panics. You should still add panic docs if a function is intended to panic under some conditions. If a panic may occur, but you’d consider it a bug if it did, don’t document it. We disable this lint because it creates a false sense of security.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Exceptions for clippy","id":"463","title":"Exceptions for clippy"},"464":{"body":"","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Guidelines","id":"464","title":"Guidelines"},"465":{"body":"It’s tempting to write a function like this: fn use_str(s: impl AsRef) { let s = s.as_ref(); println!(\"{s}\");\n} Unfortunately, this has a few downsides: it increases compile times if used in a trait, it makes that trait not object-safe if the body of the function is large, it bloats binary size, which can hurt performance by increasing pressure on the instruction cache it makes type inference harder Now that’s not to say you should never use generics. Of course, there are plenty of good reasons to use generics. But if the only reason to make your function generic is “slightly easier to use at the call-site”, consider just using a plain reference/slice instead: fn use_str(s: &str) { println!(\"{s}\");\n} This does mean you may have to use .as_ref() at the call-site, but generally this is preferred compared to the downsides of using generics. Similar logic applies to AsRef, Into, and a few other common types. The general principle is that a little bit of extra text at the call-site is usually worth the benefits from not having generic functions.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Prefer references over generics","id":"465","title":"Prefer references over generics"},"466":{"body":"We should be careful with abbreviations. Similar to above, they do indeed shorten the code you write, but at the cost of some readability. It’s important to balance the readability cost against the benefits of shorter code. Some guidelines for when to use abbreviations: if it’s something you’re going to type a lot, an abbreviation is probably the right choice. (i.e. s is an OK name for a string in very string-heavy code) if it’s a well-known abbreviation, it’s probably good (e.g. ctx for “context”, db for “database”) if it’s ambiguous (i.e. it could be short for multiple things) either use the full word, or a longer abbreviation that isn’t ambiguous. Remember that abbreviations are context-sensitive. (if I see db in a database library, it’s probably “database”. If I see it in an audio processing library it is probably “decibels”). General advice around names avoid foo.get_bar(), instead just call it foo.bar() use into_foo() for conversions that consume the original data use as_foo() for conversions that convert borrowed data to borrowed data use to_foo() for conversions that are expensive use into_inner() for extracting a wrapped value","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Abbreviations and naming things","id":"466","title":"Abbreviations and naming things"},"467":{"body":"Items (functions, modules, structs, etc) should be private by default. This is what Rust does anyways, but make sure you pay attention when marking something pub. Try to keep the public API of your crate as small as possible. It should contain only the items needed to provide the functionality it’s responsible for. A good “escape hatch” is to mark things as pub(crate). This makes the item pub but only within your crate . This can be handy for “helper functions” that you want to use everywhere within your crate, but don’t want to be available outside.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Pay attention to the public API of your crate","id":"467","title":"Pay attention to the public API of your crate"},"468":{"body":"Rust has a powerful type system, so use it! Where possible, encode important information in the type system. For example, using NonZeroU64 might make sense if it would be ridiculous for a number to be zero. Of course, you can go too far with this. Rust’s type system is Turing-complete, but we don’t want to write our whole program in the type system.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Type safety","id":"468","title":"Type safety"},"469":{"body":"If you are handling email addresses, don’t use String. Instead, create a newtype wrapper with: struct Email(String); This prevents you from using a Password where you meant to use an Email, which catches more bugs at compile time. Consider using the microtype library to generate boilerplate: #[string]\nString { Email, Username, Address, // etc...\n} This generates struct Email(String), struct Username(String), etc. for you. See the docs for more info. If your type is responsible for handling secret data, mark it #[secret] to: zeroize the memory on drop redact the Debug impl prevent serialization prevent use without .expose_secret()","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Use newtypes (a.k.a. microtypes)","id":"469","title":"Use newtypes (a.k.a. microtypes)"},"47":{"body":"This config shouldn’t work as it is, the ip address and port for the trusted peer should be those of an already running node. Also, the public_address (‘u.x.v.t’) should be a valid address (you can use an internal one, eg: 127.0.0.1). Furthermore, you need to have permission to write in the path specified by the storage config. storage: \"/mnt/cardano/storage\" rest: listen: \"127.0.0.1:8443\" p2p: trusted_peers: - address: \"/ip4/104.24.28.11/tcp/8299\" id: ad24537cb009bedaebae3d247fecee9e14c57fe942e9bb0d Description of the fields: storage: (optional) Path to the storage. If omitted, the blockchain is stored in memory only. log: (optional) Logging configuration: level: log messages minimum severity. If not configured anywhere, defaults to “info”. Possible values: “off” “critical” “error” “warn” “info” “debug” “trace” format: Log output format, plain or json. output: Log output destination. Possible values are: stdout: standard output stderr: standard error syslog: syslog (only available on Unix systems) syslogudp: remote syslog (only available on Unix systems) host: address and port of a syslog server hostname: hostname to attach to syslog messages journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages. file: path to the log file. rest: (optional) Configuration of the REST endpoint. listen: address : port to listen for requests tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled p2p: P2P network settings trusted_peers: (optional) the list of nodes’s multiaddr with their associated public_id to connect to in order to bootstrap the P2P topology (and bootstrap our local blockchain); public_id: (optional) the node’s public ID that will be used to identify this node to the network. public_address: multiaddr string specifying address of the P2P service. This is the public address that will be distributed to other peers of the network that may find interest in participating to the blockchain dissemination with the node. listen: (optional) address : port to specifies the address the node will listen to to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: The dissemination topics this node is interested to hear about: messages: Transactions and other ledger entries. Typical setting for a non-mining node: low. For a stakepool: high; blocks: Notifications about new blocks. Typical setting for a non-mining node: normal. For a stakepool: high. max_connections: The maximum number of simultaneous P2P connections this node should maintain. explorer: (optional) Explorer settings enabled: True or false no_blockchain_updates_warning_interval: (optional, seconds) if no new blocks were received after this period of time, the node will start sending you warnings in the logs.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Note","id":"47","title":"Note"},"470":{"body":"In general, prefer plain functions over a struct + trait implementation. For example, instead of this: // BAD\ntrait GetBar { fn bar(&self) -> &Bar;\n} impl GetBar for Foo { fn bar(&self) -> &Bar { &self.bar }\n} write this: // GOOD\nimpl Foo { fn bar(&self) -> &Bar { &self.bar }\n} I.e., don’t use a trait if you don’t need it. A common reason why people do this is to mock out a particular function call for testing. This can be useful in a few select places, such as interacting with the real world. Eg, networking, clocks, randomness, etc. However, it has some significant downsides. it means you’re not actually testing this code. This might be fine for some types of code (e.g. database code). It might be unreasonable to rely on a database for unit tests. However, if your whole test suite is organized around this, your business logic won’t get tested. it forces you to use a trait, which have restrictions that plain functions don’t have: it forces you into either generics or dynamic dispatch (often with a heap allocation if you don’t want to play the lifetime game) you may now have to think about object safety, which can be very tricky for some APIs async functions are not properly supported it’s not usable in a const context Some alternative patterns are: try to rewrite your test to avoid needing a mock if you know all the variants at compile time, consider using an enum swap out the implementation with conditional compilation","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Don’t over-abstract","id":"470","title":"Don’t over-abstract"},"471":{"body":"If you need unsafe code, put it in its own crate with a safe API. And really think hard about whether you need unsafe code. There are times when you absolutely do need it, but this project cares more about correctness than performance. If you find yourself wanting to use unsafe, try the following: if you want to create bindings to a C/C++ library: First, see if there is a pure-Rust implementation. Otherwise, search on crates.io for a _sys crate. if you want to create a cool data structure that requires unsafe: does it really need unsafe? is it a doubly linked list? If so, have you got benchmarks that show that a VecDeque is insufficient? Something something cache-friendly… is there a suitable implementation on crates.io? is this data structure really noticeably better than what we have in std? if you want to do a performance optimization (e.g. using unreachable_unchecked() to remove a bounds check): Encode it in the type system, and put it in a separate crate with a safe API. If you can’t do that, it’s probably an indication that the mental model is also too complicated for a human to keep track of. if you want to write a test that makes sure the code does the right thing “even in the presence of UB”, just don’t All unsafe code must be tested with Miri.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Unsafe code","id":"471","title":"Unsafe code"},"472":{"body":"As mentioned above, we should enable #![deny(missing_docs)] on all new code. But that doesn’t mean we shouldn’t document private items. Ideally, we’d document as much as possible. Of course, for tiny helper functions, or functions whose behaviour is obvious from looking don’t need documentation. For example, this sort of comment doesn’t add much: /// Sets self.bar to equal bar\nfn set_bar(&mut self, bar: Bar) { self.bar = bar;\n} If this is a private member, don’t bother with this comment. If it’s public, something like this is fine just to get clippy to shut up. But if it’s at all unclear what’s going on, try to use a more descriptive comment. If adding a dependency, add a comment explaining what the dependency does.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Docs","id":"472","title":"Docs"},"473":{"body":"Try to use doctests. Especially for less obvious code, a small example can be really helpful. Humans learn by copying examples, so providing some can drastically reduce the amount of time a new contributor needs to become productive. If you need some setup for your tests that you don’t want to render in docs, prefix the line with #. When combined with the include macro, this can lead to pretty concise but also powerful test setup. If you need some inspiration, check out the docstests for diesel.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Doctests","id":"473","title":"Doctests"},"474":{"body":"Write code as if it’s going to end up being run in a web server. This means a few things: all inputs are potentially malicious code should be usable as a library without going through a text interface (i.e. your library should expose a Rust API)","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Write code as if it’s going to be in a web server","id":"474","title":"Write code as if it’s going to be in a web server"},"475":{"body":"Error handling in Rust is complex, which represents the real-world complexity of error handling. Broadly speaking, there are two types of error: Expected errors are errors that are expected to occur during normal operation of the application. For example, in bug free code, it would still be expected to see network timeout errors, since that networking is inherently fallible. The exact error handling strategy may vary, but often involves returning a Result. Unexpected errors are errors that are not expected to occur. If they do occur, it represents a bug. These errors are handled by panicking. As much as possible, we try to make these cases impossible by construction by using the correct types for data. For example, imagine you have a struct that represents “a list with at least one element”. You could write: struct NonEmptyList { inner: Vec,\n} impl NonEmptyList { /// Doesn't need to be an Option<&T> because the list is guaranteed to have at least 1 element fn first(&self) -> &T { inner.get(0).expect(\"guaranteed to have at least 1 element\") }\n} This would be fine , since it represents a bug if this panic is ever hit. But it would be better to write it like this: struct NonEmptyList { head: T, tail: Vec,\n} impl NonEmptyList { fn first(&self) -> &T { &self.head }\n} This provides the compiler with more information about the invariants of our type. This allows us to eliminate the error at compile time.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Error handling","id":"475","title":"Error handling"},"476":{"body":"Well-behaved code doesn’t panic. So if our response to encountering an expected error is to panic, our software is not well-behaved. Instead, we should use Result to represent data that might be an error. But how do we pick E? There are two main choices for E: Use thiserror for recoverable errors In contexts where we may want to recover from errors, we should use a dedicated error type. We generate these with thiserror: #[derive(Debug, Error)]\nenum FooError { #[error(\"failed to bar\")] Bar, #[error(\"failed to baz\")] Baz,\n} This allows the user to write: match try_foo() { Ok(foo) => println!(\"got a foo: {foo}\"), Err(FooError::Bar) => eprintln!(\"failed to bar\"), Err(FooError::Baz) => eprintln!(\"failed to baz\"),\n} Use color_eyre for unrecoverable errors In contexts where we don’t want to recover from errors, use Report from the color_eyre crate. This is a trait object based error type which allows you to “fire and forget” an error. While technically possible , it’s less ergonomic to recover from a Result. Therefore, only use this in contexts where the correct behaviour is “exit the program”. This is commonly the case in CLI apps. However , even in CLI apps, it’s good practice to split the logic into a lib.rs file (or modules) and have a separate binary. Found a bug? Edit this page on GitHub.","breadcrumbs":"Rust API » 🦀 Rust Style Guide » Handling expected errors","id":"476","title":"Handling expected errors"},"477":{"body":"","breadcrumbs":"Web API » Web API » Web API","id":"477","title":"Web API"},"478":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » dbSync Explorer HTTP/REST API V1 » dbSync Explorer HTTP/REST API V1","id":"478","title":"dbSync Explorer HTTP/REST API V1"},"479":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Servicing Station HTTP/REST API V0 » VIT Servicing Station HTTP/REST API V0","id":"479","title":"VIT Servicing Station HTTP/REST API V0"},"48":{"body":"jormungandr --config config.yaml --genesis-block-hash 'abcdef987654321....' The ‘abcdef987654321….’ part refers to the hash of the genesis. This should be given to you from one of the peers in the network you are connecting to. In case you have the genesis file (for example block-0.bin, because you are creating the network) you can get this hash with jcli. jcli genesis hash --input block-0.bin or, in case you only have the yaml file jcli genesis encode --input genesis.yaml | jcli genesis hash Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Starting a passive node » Starting the node","id":"48","title":"Starting the node"},"480":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock Farm HTTP/REST API V0 » VIT Testing Mock Farm HTTP/REST API V0","id":"480","title":"VIT Testing Mock Farm HTTP/REST API V0"},"481":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » VIT Testing Mock HTTP/REST API V0 » VIT Testing Mock HTTP/REST API V0","id":"481","title":"VIT Testing Mock HTTP/REST API V0"},"482":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V0 » Vote Ledger HTTP/REST API V0","id":"482","title":"Vote Ledger HTTP/REST API V0"},"483":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Web API » Vote Ledger HTTP/REST API V1 » Vote Ledger HTTP/REST API V1","id":"483","title":"Vote Ledger HTTP/REST API V1"},"484":{"body":"First off, thanks for taking the time to contribute! ❤️ All types of contributions are encouraged and valued. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 And if you like the project, but just don’t have time to contribute, that’s fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: Star the project Tweet about it Refer this project in your project’s readme Mention the project at local meetups and tell your friends/colleagues","breadcrumbs":"Contributing to Catalyst Core » Contributing to Catalyst Core","id":"484","title":"Contributing to Catalyst Core"},"485":{"body":"Code of Conduct I Have a Question I Want To Contribute Reporting Bugs Suggesting Enhancements Your First Code Contribution Improving The Documentation Styleguides Commit Messages","breadcrumbs":"Contributing to Catalyst Core » Table of Contents","id":"485","title":"Table of Contents"},"486":{"body":"This project and everyone participating in it is governed by the Catalyst Core Code of Conduct . By participating, you are expected to uphold this code. Please report unacceptable behavior to mailto:code-of-conduct@iohk.io .","breadcrumbs":"Contributing to Catalyst Core » Code of Conduct","id":"486","title":"Code of Conduct"},"487":{"body":"If you want to ask a question, we assume that you have read the available Documentation . Before you ask a question, it is best to search for existing Issues that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. If you then still feel the need to ask a question and need clarification, we recommend the following: Open an Issue . Provide as much context as you can about what you’re running into. Provide project and platform versions (rustc --version --verbose, etc), depending on what seems relevant. We will then take care of the issue as soon as possible.","breadcrumbs":"Contributing to Catalyst Core » I Have a Question","id":"487","title":"I Have a Question"},"488":{"body":"","breadcrumbs":"Contributing to Catalyst Core » I Want To Contribute","id":"488","title":"I Want To Contribute"},"489":{"body":"When contributing to this project, you must agree: that you have authored 100% of the content that you have the necessary rights to the content and that the content you contribute may be provided under the project license.","breadcrumbs":"Contributing to Catalyst Core » Legal Notice","id":"489","title":"Legal Notice"},"49":{"body":"It is possible to query the node via its REST Interface. In the node configuration, you have set something like: # ... rest: listen: \"127.0.0.1:8443\" #... This is the REST endpoint to talk to the node, to query blocks or send transaction. It is possible to query the node stats with the following end point: curl http://127.0.0.1:8443/api/v0/node/stats The result may be: {\"blockRecvCnt\":120,\"txRecvCnt\":92,\"uptime\":245} THE REST API IS STILL UNDER DEVELOPMENT Please note that the end points and the results may change in the future. To see the whole Node API documentation: Voting ledger REST API V0 Voting ledger REST API V1 Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » REST Api » REST Api","id":"49","title":"REST Api"},"490":{"body":"Before Submitting a Bug Report A good bug report shouldn’t leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible. Make sure that you are using the latest version. Determine if your bug is really a bug and not an error on your side. e.g. using incompatible environment components/versions (Make sure that you have read the documentation . If you are looking for support, you might want to check this section ). To see if other users have experienced (and potentially already solved) the same issue you are having. Check if there is not already a bug report existing for your bug or error in the bug tracker . Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. Collect information about the bug: Stack trace (Traceback) OS, Platform and Version (Windows, Linux, macOS, x86, ARM) Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant. Possibly your input and the output Can you reliably reproduce the issue? And can you also reproduce it with older versions? How Do I Submit a Good Bug Report? You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to contact@iohk.io . We use GitHub issues to track bugs and errors. If you run into an issue with the project: Open an Issue . (Since we can’t be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.) Explain the behavior you would expect and the actual behavior. Please provide as much context as possible. Describe the reproduction steps that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case. Provide the information you collected in the previous section. Once it’s filed: The project team will label the issue accordingly. A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps. The issue would then be marked as needs-repro. Bugs with the needs-repro tag will not be addressed until they are reproduced. If the team is able to reproduce the issue, it will be marked needs-fix. It may possibly be marked with other tags (such as critical). The issue will then be left to be implemented by someone .","breadcrumbs":"Contributing to Catalyst Core » Reporting Bugs","id":"490","title":"Reporting Bugs"},"491":{"body":"This section guides you through submitting an enhancement suggestion for Catalyst Core, including completely new features and minor improvements to existing functionality . Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions. Before Submitting an Enhancement Make sure that you are using the latest version. Read the documentation carefully. Find out if the functionality is already covered, maybe by an individual configuration. Perform a search to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. Find out whether your idea fits with the scope and aims of the project. It’s up to you to make a strong case to convince the project’s developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you’re just targeting a minority of users, consider writing an add-on/plugin library. How Do I Submit a Good Enhancement Suggestion? Enhancement suggestions are tracked as GitHub issues . Use a clear and descriptive title for the issue to identify the suggestion. Provide a step-by-step description of the suggested enhancement in as many details as possible. Describe the current behavior and explain which behavior you expected to see instead and why. At this point you can also tell which alternatives do not work for you. You may want to include screenshots and animated GIFs . This can help you demonstrate the steps or point out the part which the suggestion is related to. You can use this tool to record GIFs on macOS and Windows, and this tool or this tool on Linux. Explain why this enhancement would be useful to most Catalyst Core users. You may also want to point out the other projects that solved it better and which could serve as inspiration.","breadcrumbs":"Contributing to Catalyst Core » Suggesting Enhancements","id":"491","title":"Suggesting Enhancements"},"492":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Your First Code Contribution","id":"492","title":"Your First Code Contribution"},"493":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Improving The Documentation","id":"493","title":"Improving The Documentation"},"494":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Styleguides","id":"494","title":"Styleguides"},"495":{"body":"","breadcrumbs":"Contributing to Catalyst Core » Commit Messages","id":"495","title":"Commit Messages"},"496":{"body":"","breadcrumbs":"Contributor Covenant Code of Conduct » Contributor Covenant Code of Conduct","id":"496","title":"Contributor Covenant Code of Conduct"},"497":{"body":"We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.","breadcrumbs":"Contributor Covenant Code of Conduct » Our Pledge","id":"497","title":"Our Pledge"},"498":{"body":"Examples of behavior that contributes to a positive environment for our community include: Demonstrating empathy and kindness toward other people Being respectful of differing opinions, viewpoints, and experiences Giving and gracefully accepting constructive feedback Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: The use of sexualized language or imagery, and sexual attention or advances of any kind Trolling, insulting or derogatory comments, and personal or political attacks Public or private harassment Publishing others’ private information, such as a physical or email address, without their explicit permission Other conduct which could reasonably be considered inappropriate in a professional setting","breadcrumbs":"Contributor Covenant Code of Conduct » Our Standards","id":"498","title":"Our Standards"},"499":{"body":"Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Responsibilities","id":"499","title":"Enforcement Responsibilities"},"5":{"body":"This chapter covers the general concepts of the blockchain, and their application in the node, and is followed by the node organisation and the user interaction with it.","breadcrumbs":"Core Ledger » General Concepts » General Concepts » General Concepts","id":"5","title":"General Concepts"},"50":{"body":"The node can be configured to work as a explorer. This consumes more resources, but makes it possible to query data otherwise not available.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Explorer mode","id":"50","title":"Explorer mode"},"500":{"body":"This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.","breadcrumbs":"Contributor Covenant Code of Conduct » Scope","id":"500","title":"Scope"},"501":{"body":"Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at conduct@iohk.io. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident.","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement","id":"501","title":"Enforcement"},"502":{"body":"Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:","breadcrumbs":"Contributor Covenant Code of Conduct » Enforcement Guidelines","id":"502","title":"Enforcement Guidelines"},"503":{"body":"Community Impact : Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. Consequence : A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.","breadcrumbs":"Contributor Covenant Code of Conduct » 1. Correction","id":"503","title":"1. Correction"},"504":{"body":"Community Impact : A violation through a single incident or series of actions. Consequence : A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 2. Warning","id":"504","title":"2. Warning"},"505":{"body":"Community Impact : A serious violation of community standards, including sustained inappropriate behavior. Consequence : A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.","breadcrumbs":"Contributor Covenant Code of Conduct » 3. Temporary Ban","id":"505","title":"3. Temporary Ban"},"506":{"body":"Community Impact : Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. Consequence : A permanent ban from any sort of public interaction within the community.","breadcrumbs":"Contributor Covenant Code of Conduct » 4. Permanent Ban","id":"506","title":"4. Permanent Ban"},"507":{"body":"This Code of Conduct is adapted from the Contributor Covenant , version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html . Community Impact Guidelines were inspired by Mozilla’s code of conduct enforcement ladder . For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq . Translations are available at https://www.contributor-covenant.org/translations . Found a bug? Edit this page on GitHub.","breadcrumbs":"Contributor Covenant Code of Conduct » Attribution","id":"507","title":"Attribution"},"508":{"body":"This markup is available to enhance the presentation of the book. Info A beautifully styled message. Example My example is the best! Note A plain note. Data loss The following steps can lead to irrecoverable data corruption. This will take a while, go and grab a drink of water. Referencing and dereferencing The opposite of referencing by using & is dereferencing , which is accomplished with the dereference operator, *. Bug This syntax won’t work in Python 3: print \"Hello, world!\"","breadcrumbs":"Example Enhanced Markup » Example Enhanced Markup","id":"508","title":"Example Enhanced Markup"},"509":{"body":"AB Don’t Click Me Can helpAnyoneGo to https://github.com/input-output-hk/catalyst-coreHow to contribute?Reporting bugsSharing ideasAdvocating Found a bug? Edit this page on GitHub.","breadcrumbs":"Example Enhanced Markup » Example Rendered Diagrams","id":"509","title":"Example Rendered Diagrams"},"51":{"body":"There are two ways of enabling the explorer api. It can either be done by passing the --enable-explorer flag on the start arguments or by the config file: explorer: enabled: true","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » Configuration","id":"51","title":"Configuration"},"510":{"body":"Found a bug? Edit this page on GitHub.","breadcrumbs":"Suffix » Suffix","id":"510","title":"Suffix"},"52":{"body":"For configuring CORS the explorer API, this needs to be done on the REST section of the config, as documented here .","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » CORS","id":"52","title":"CORS"},"53":{"body":"A graphql interface can be used to query the explorer data. When enabled, two endpoints are available in the REST interface : /explorer/graphql /explorer/playground The first is the one that queries are made against, for example: curl \\ -X POST \\ -H \"Content-Type: application/json\" \\ --data '{'\\ '\"query\": \"{'\\ ' status {'\\ ' latestBlock {'\\ ' chainLength'\\ ' id'\\ ' previousBlock {'\\ ' id'\\ ' }'\\ ' }'\\ ' }'\\ '}\"'\\ '}' \\ http://127.0.0.1:8443/explorer/graphql While the second serves an in-browser graphql IDE that can be used to try queries interactively. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » Explorer mode » API","id":"53","title":"API"},"54":{"body":"","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » How to start a node as a leader candidate","id":"54","title":"How to start a node as a leader candidate"},"55":{"body":"Like in the passive node case, two things are needed to connect to an existing network the hash of the genesis block of the blockchain, this will be the source of truth of the blockchain. It is 64 hexadecimal characters. the trusted peers identifiers and access points. The node configuration could be the same as that for running a passive node . There are some differences depending if you are connecting to a network running a genesis or bft consensus protocol.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Gathering data","id":"55","title":"Gathering data"},"56":{"body":"Registering a stake pool In order to be able to generate blocks in an existing genesis network, a registered stake pool is needed. Creating the secrets file Put the node id and private keys in a yaml file in the following way: Example filename: node_secret.yaml genesis: sig_key: Content of stake_pool_kes.prv file vrf_key: Content of stake_pool_vrf.prv file node_id: Content of stake_pool.id file Starting the Genesis node jormungandr --genesis-block-hash asdf1234... --config config.yaml --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a genesis blockchain","id":"56","title":"Connecting to a genesis blockchain"},"57":{"body":"In order to generate blocks, the node should be registered as a slot leader in the network and started in the following way. The secret file Put secret key in a yaml file, e.g. node_secret.yaml as follows: bft: signing_key: ed25519_sk1kppercsk06k03yk4qgea.... where signing_key is a private key associated to the public id of a slot leader. Starting the BFT node jormungandr --genesis-block asdf1234... --config node.config --secret node_secret.yaml The ‘asdf1234…’ part should be the actual block0 hash of the network. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Quickstart » How to start a node as a leader candidate » Connecting to a BFT blockchain","id":"57","title":"Connecting to a BFT blockchain"},"58":{"body":"This chapter covers the node documentation, necessary to have a working system. It covers the network, logging and storage parameters.","breadcrumbs":"Core Ledger » Configuration » Configuration » Configuration","id":"58","title":"Configuration"},"59":{"body":"This is an common example of a Jörmungandr node configuration file typically named node-config.yaml. However your’s will vary depending on your needs. Additionally, this configuration has been tested on a specific Jörmungandr version and may change with newer versions. It’s important to keep in mind that the trusted_peers portion of this configuration will be different for each Cardano blockchain network. If you’re trying to connect this node to a specific network, you need to know: its genesis block hash its associated list of trusted peers. Example Configuration - 1: ---\nlog: output: stderr level: info format: plain http_fetch_block0_service: - https://url/jormungandr-block0/raw/master/data skip_bootstrap: false # If set to true - will skip the bootstrapping phase bootstrap_from_trusted_peers: false p2p: public_address: \"/ip4/X.X.X.X/tcp/Y\" # This should match your public IP address (X) and port number (Y) #listen: 0.0.0.0:Y topics_of_interest: blocks: normal # Default is normal - set to high for stakepool messages: low # Default is low - set to high for stakepool allow_private_addresses: false max_connections: 256 max_client_connections: 192 gossip_interval: 10s max_bootstrap_attempts: # Default is not set trusted_peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 - address: \"/ip4/3.124.132.123/tcp/3000\" id: 431214988b71f3da55a342977fea1f3d8cba460d031a839c - address: \"/ip4/18.184.181.30/tcp/3000\" id: e9cf7b29019e30d01a658abd32403db85269fe907819949d - address: \"/ip4/184.169.162.15/tcp/3000\" id: acaba9c8c4d8ca68ac8bad5fe9bd3a1ae8de13816f40697c - address: \"/ip4/13.56.87.134/tcp/3000\" id: bcfc82c9660e28d4dcb4d1c8a390350b18d04496c2ac8474 policy: quarantine_duration: 30m quarantine_whitelist: - \"/ip4/13.230.137.72/tcp/3000\" - \"/ip4/13.230.48.191/tcp/3000\" - \"/ip4/18.196.168.220/tcp/3000\" layers: preferred_list: view_max: 20 peers: - address: \"/ip4/13.230.137.72/tcp/3000\" id: e4fda5a674f0838b64cacf6d22bbae38594d7903aba2226f - address: \"/ip4/13.230.48.191/tcp/3000\" id: c32e4e7b9e6541ce124a4bd7a990753df4183ed65ac59e34 - address: \"/ip4/18.196.168.220/tcp/3000\" id: 74a9949645cdb06d0358da127e897cbb0a7b92a1d9db8e70 rest: listen: 127.0.0.1:3100 storage: \"./storage\" explorer: enabled: false mempool: pool_max_entries: 100000 log_max_entries: 100000 leadership: logs_capacity: 1024 no_blockchain_updates_warning_interval: 15m Note: The node configuration uses the YAML format.","breadcrumbs":"Core Ledger » Configuration » Configuration » Node Configuration","id":"59","title":"Node Configuration"},"6":{"body":"","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blockchain concepts","id":"6","title":"Blockchain concepts"},"60":{"body":"","breadcrumbs":"Core Ledger » Configuration » Configuration » Advanced","id":"60","title":"Advanced"},"61":{"body":"Starting the node jormungandr with the command line option --rewards-report-all will collect a thorough report of all the reward distribution. It can then be accessed via the REST endpoints /api/v0/rewards/history/1 or /api/v0/rewards/epoch/10. this is not a recommended setting as it may take memory and may trigger some latency .","breadcrumbs":"Core Ledger » Configuration » Configuration » Rewards report","id":"61","title":"Rewards report"},"62":{"body":"By default we allow a single transaction to delay a block by 50 slots. This can be changed by adjusting the block_hard_deadline setting. The following is deprecated and will be removed If you want to record the reward distributions in a directory it is possible to set the environment variable: JORMUNGANDR_REWARD_DUMP_DIRECTORY=/PATH/TO/DIR/TO/WRITE/REWARD. If an error occurs while dumping the reward, the node will panic with an appropriate error message.","breadcrumbs":"Core Ledger » Configuration » Configuration » Handling of time-consuming transactions","id":"62","title":"Handling of time-consuming transactions"},"63":{"body":"The leadership field in your node config file is not mandatory, by default it is set as follow: leadership: logs_capacity: 1024 logs_capacity: the maximum number of logs to keep in memory. Once the capacity is reached, older logs will be removed in order to leave more space for new ones [default: 1024] Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Leadership » Leadership","id":"63","title":"Leadership"},"64":{"body":"The following options are available in the log section: level: log messages minimum severity. If not configured anywhere, defaults to info. Possible values: off, critical, error, warn, info, debug, trace format: Log output format, plain or json output: Log output destination (multiple destinations are supported). Possible values are: stdout: standard output stderr: standard error journald: journald service (only available on Linux with systemd, (if jormungandr is built with the systemd feature) gelf: Configuration fields for GELF (Graylog) network logging protocol (if jormungandr is built with the gelf feature): backend: hostname : port of a GELF server log_id: identifier of the source of the log, for the host field in the messages file: path to the log file","breadcrumbs":"Core Ledger » Configuration » Logging » Logging","id":"64","title":"Logging"},"65":{"body":"A single configurable backend is supported.","breadcrumbs":"Core Ledger » Configuration » Logging » Example","id":"65","title":"Example"},"66":{"body":"log: output: stdout level: trace format: plain","breadcrumbs":"Core Ledger » Configuration » Logging » Output to stdout","id":"66","title":"Output to stdout"},"67":{"body":"log: output: file: example.log level: info format: json Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Logging » Output to a file","id":"67","title":"Output to a file"},"68":{"body":"When running an active node (BFT leader or stake pool) it is interesting to be able to make choices on how to manage the pending transactions: how long to keep them, how to prioritize them etc. The mempool field in your node config file is not mandatory, by default it is set as follow: mempool: pool_max_entries: 10000 log_max_entries: 100000 pool_max_entries: (optional, default is 10000). Set a maximum size of the mempool log_max_entries: (optional, default is 100000). Set a maximum size of fragment logs persistent_log: (optional, disabled by default) log all incoming fragments to log files, rotated on a hourly basis. The value is an object, with the dir field specifying the directory name where log files are stored.","breadcrumbs":"Core Ledger » Configuration » Mempool » Mempool","id":"68","title":"Mempool"},"69":{"body":"A persistent log is a collection of records comprised of a UNIX timestamp of when a fragment was registereed by the mempool followed by the hex-encoded fragment body. This log is a line-delimited JSON stream. Keep in mind that enabling persistent logs could result in impaired performance of the node if disk operations are slow. Consider using a reasonably fast ssd for best results. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Mempool » Persistent logs","id":"69","title":"Persistent logs"},"7":{"body":"Slots represent the basic unit of time in the blockchain, and at each slot a block could be present. Consecutive slots are grouped into epochs, which have updatable size defined by the protocol.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Time","id":"7","title":"Time"},"70":{"body":"There are 2 different network interfaces which are covered by their respective section: rest: ...\np2p: ...","breadcrumbs":"Core Ledger » Configuration » Node network » Node network","id":"70","title":"Node network"},"71":{"body":"listen: listen address tls: (optional) enables TLS and disables plain HTTP if provided cert_file: path to server X.509 certificate chain file, must be PEM-encoded and contain at least 1 item priv_key_file: path to server private key file, must be PKCS8 with single PEM-encoded, unencrypted key cors: (optional) CORS configuration, if not provided, CORS is disabled allowed_origins: (optional) allowed origins, if none provided, echos request origin, note that an origin should include a scheme, for example: http://127.0.0.1:8080. max_age_secs: (optional) maximum CORS caching time in seconds, if none provided, caching is disabled","breadcrumbs":"Core Ledger » Configuration » Node network » REST interface configuration","id":"71","title":"REST interface configuration"},"72":{"body":"In order to enable TLS there must be provided certificate and private key files. jcli TLS requirements Note that jormungandr itself does not have any specific requirements for TLS certificates and you may give whatever you want including self-signed certificates as long as you do not intend to use jcli. The cryptography standards used by jcli as well as by all modern browsers and many http clients place the following requirements on certificates: A certificate should adhere to X.509 v3 with appropriate key usage settings and subject alternative name. A certificate must not be self-signed. Given that, your options are to either get a certificate from a well-known CA (Let’s Encrypt will do, jcli uses Mozilla’s CA bundle for verification) or create your own local CA and provide the root certificate to jcli via the --tls-cert-path option. Creating a local CA using OpenSSL and EasyRSA EasyRSA is a set of scripts that use OpenSSL and give you an easier experience with setting up your local CA. You can download them here . Go to easy-rsa/easy-rsa3. Configure your CA. To do that, create the configuration file (cp vars.example vars); open it with the text editor of your choise (for example, vim vars); uncomment and edit fields you need to change. Each CA needs to edit these lines (find then in your vars file according to their organization structure: #set_var.EASYRSA_REQ_COUNTRY––“US” #set_var.EASYRSA_REQ_PROVINCE—“California” #set_var.EASYRSA_REQ_CITY—“San.Francisco” #set_var.EASYRSA_REQ_ORG––“Copyleft.Certificate.Co” #set_var.EASYRSA_REQ_EMAIL–“me@example.net” #set_var.EASYRSA_REQ_OU—–“My.Organizational.Unit” When your configuration is ready, run ./easyrsa init-pki and ./easyrsa build-ca nopass. You will be prompted to set the name of your CA. Run ./easyrsa gen-req server nopass to create a new private key and a certificate signing request. You will be prompted to enter the host name (localhost for local testing). Run ./easyrsa sign-req server server to sign the request. To use the generated certificate, use it and the corresponding key in your jormungandr config: rest: tls: cert_file: priv_key_file: Use the CA certificate with jcli.","breadcrumbs":"Core Ledger » Configuration » Node network » Configuring TLS","id":"72","title":"Configuring TLS"},"73":{"body":"trusted_peers: (optional) the list of nodes’ multiaddr to connect to in order to bootstrap the p2p topology (and bootstrap our local blockchain). Note that you can use a DNS name in the following format: /dns4/node.example.com/tcp/3000. Use dns6 instead of dns4 if you want the peer to connect with IPv6. public_address: multiaddr the address to listen from and accept connection from. This is the public address that will be distributed to other peers of the network that may find interest into participating to the blockchain dissemination with the node. Currently only TCP is supported. node_key_file: (optional) Path to a file containing a bech32-encoded ed25519 secret key. The keys are used to advertize the node in network gossip and to authenticate a connection to the node if the node is used as a trusted peer. Most of the users don’t need to set this value as the key will be randomly generated if the option is not present. listen: (optional) socket address (IP address and port separated by a comma), specifies the interface address and port the node will listen at to receive p2p connection. Can be left empty and the node will listen to whatever value was given to public_address. topics_of_interest: (optional) the different topics we are interested to hear about: messages: notify other peers this node is interested about Transactions typical setting for a non mining node: \"low\". For a stakepool: \"high\"; blocks: notify other peers this node is interested about new Blocks. typical settings for a non mining node: \"normal\". For a stakepool: \"high\". max_connections: the maximum number of P2P connections this node should maintain. If not specified, an internal limit is used by default [default: 256] max_client_connections: the maximum number of client P2P connections this node should keep open. [default: 192] policy: (optional) set the setting for the policy module quarantine_duration set the time to leave a node in quarantine before allowing it back (or not) into the fold. It is recommended to leave the default value [default: 30min]. quarantine_whitelist set a trusted list of peers that will not be quarantined in any circumstance. It should be a list of valid addresses, for example: [\"/ip4/127.0.0.1/tcp/3000\"]. By default this list is empty, [default: []]. layers: (optional) set the settings for some of the poldercast custom layers (see below) gossip_interval: (optional) interval to start gossiping with new nodes, changing the value will affect the bandwidth. The more often the node will gossip the more bandwidth the node will need. The less often the node gossips the less good the resilience to node churn. [default: 10s] network-stuck_check: (optional) If no gossip has been received in the last interval, try to connect to nodes that were previously known to this node. This helps to rejoin the protocol in case there is a network outage and the node cannot reach any other peer. [default: 5min] max_bootstrap_attempts: (optional) number of times to retry bootstrapping from trusted peers. If not set, default behavior, the bootstrap process will keep retrying indefinitely, until completed successfully. If set to 0 (zero), the node will skip bootstrap all together – even if trusted peers are defined . If the node fails to bootstrap from any of the trusted peers and the number of bootstrap retry attempts is exceeded, then the node will continue to run without completing the bootstrap process. This will allow the node to act as the first node in the p2p network (i.e. genesis node), or immediately begin gossip with the trusted peers if any are defined.","breadcrumbs":"Core Ledger » Configuration » Node network » P2P configuration","id":"73","title":"P2P configuration"},"74":{"body":"The trusted peers is a concept that is not fully implemented yet. One of the key element for now is that this is the first node any node tries to connect in order to meet new nodes. Right now, as far as we know, only one of them is needed. IOHK provides a few others for redundancy.","breadcrumbs":"Core Ledger » Configuration » Node network » The trusted peers","id":"74","title":"The trusted peers"},"75":{"body":"Jörmungandr provides multiple additional layers to the poldercast default ones: the preferred list or the bottle in the sea. Preferred list This is a special list that allows to connect multiple nodes together without relying on the auto peer discovery. All entries in the preferred list are also whitelisted automatically, so they cannot be quarantined. configuration view_max: this is the number of entries to show in the view each round the layer will randomly select up to view_max entries from the whole preferred_list.peers list of entries. [default: 20] peers: the list of peers to keep in the preferred list [default: EMPTY] Also, the preferred list will never be quarantined or blacklisted, the node will attempt to connect to (up to view_max of) these nodes every time, even if some are down, unreachable or not operated anymore. COMPATIBILITY NOTE : in near future the peer list will be only a list of addresses and the ID part will not be necessary. Example p2p: layers: preferred_list: view_max: 20 peers: - address: '/ip4/127.0.0.1/tcp/2029' id: 019abc... - ...","breadcrumbs":"Core Ledger » Configuration » Node network » Layers","id":"75","title":"Layers"},"76":{"body":"This is needed to advertise your node as a trusted peer. If not set, the node will generate a random ID, which is fine for a regular user. You can generate a public id with openssl , for example: openssl rand -hex 24","breadcrumbs":"Core Ledger » Configuration » Node network » Setting the public_id","id":"76","title":"Setting the public_id"},"77":{"body":"This is an optional value to set. The default is: messages: low\nblocks: normal These values make sense for most of the users that are not running stake pools or that are not even publicly reachable. However for a publicly reachable node, the recommended settings would be: messages: normal\nblocks: normal and for a stake pool: messages: high\nblocks: high Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Node network » topics_of_interest","id":"77","title":"topics_of_interest"},"78":{"body":"","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prometheus","id":"78","title":"Prometheus"},"79":{"body":"To use Prometheus you need Jormungandr compiled with the prometheus-metrics feature enabled.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Prerequisites","id":"79","title":"Prerequisites"},"8":{"body":"Fragments are part of the blockchain data that represent all the possible events related to the blockchain health (e.g. update to the protocol), but also and mainly the general recording of information like transactions and certificates.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Fragments","id":"8","title":"Fragments"},"80":{"body":"To enable Prometheus endpoint you need to enable it in the configuration file: prometheus: enabled: true Alternatively, you can use the --prometheus-metrics flag. When enabled, the Prometheus endpoint is exposed as http(s)://:/prometheus. Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » Configuration » Prometheus » Usage","id":"80","title":"Usage"},"81":{"body":"This is the node command line helper. It is mostly meant for developers and stake pool operators. It allows offline operations: generating cryptographic materials for the wallets and stake pools; creating addresses, transactions and certificates; prepare a new blockchain and it allows simple interactions with the node: query stats; send transactions and certificates; get raw blocks and UTxOs.","breadcrumbs":"Core Ledger » jcli » jcli » jcli","id":"81","title":"jcli"},"82":{"body":"Jormungandr comes with a separate CLI to create and manipulate addresses. This is useful for creating addresses from their components in the CLI, for debugging addresses and for testing.","breadcrumbs":"Core Ledger » jcli » Address » Address","id":"82","title":"Address"},"83":{"body":"To display an address and verify it is in a valid format you can utilise: $ jcli address info ta1svy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxlswdf0\ndiscrimination: testing\npublic key: ed25519e_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx or for example: $ jcli address \\ info \\ ca1qsy0mwwm7mdwcuj308aapjw6ra4c3e6cygd0f333nvtjzxg8ahdvxz8ah8dldkhvwfghn77se8dp76uguavzyxh5cccek9epryr7mkkr8n7kgx\ndiscrimination: production\npublic key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx\ngroup key: ed25519_pk1pr7mnklkmtk8y5tel0gvnksldwywwkpzrt6vvvvmzus3jpldmtpsx9rnmx","breadcrumbs":"Core Ledger » jcli » Address » Display address info","id":"83","title":"Display address info"},"84":{"body":"Each command following allows to create addresses for production and testing chains. For chains, where the discrimination is testing, you need to use the --testing flag. There’s 3 types of addresses: Single address : A simple spending key. This doesn’t have any stake in the system Grouped address : A spending key attached to an account key. The stake is automatically Account address : An account key. The account is its own stake","breadcrumbs":"Core Ledger » jcli » Address » Creating an address","id":"84","title":"Creating an address"},"85":{"body":"You can create a single address (non-staked) using the spending public key for this address utilising the following command: $ jcli address \\ single ed25519e_pk1jnlhwdgzv3c9frknyv7twsv82su26qm30yfpdmvkzyjsdgw80mfqduaean\nca1qw207ae4qfj8q4yw6v3ned6psa2r3tgrw9u3y9hdjcgj2p4pcaldyukyka8 To add the staking information and make a group address, simply add the account public key as a second parameter of the command: $ jcli address \\ single \\ ed25519_pk1fxvudq6j7mfxvgk986t5f3f258sdtw89v4n3kr0fm6mpe4apxl4q0vhp3k \\ ed25519_pk1as03wxmy2426ceh8nurplvjmauwpwlcz7ycwj7xtl9gmx9u5gkqscc5ylx\nca1q3yen35r2tmdye3zc5lfw3x992s7p4dcu4jkwxcda80tv8xh5ym74mqlzudkg42443nw08cxr7e9hmcuzals9ufsa9uvh723kvteg3vpvrcxcq","breadcrumbs":"Core Ledger » jcli » Address » Address for UTxO","id":"85","title":"Address for UTxO"},"86":{"body":"To create an account address you need the account public key and run: $ jcli address \\ account ed25519_pk1c4yq3hflulynn8fef0hdq92579n3c49qxljasrl9dnuvcksk84gs9sqvc2\nca1qhz5szxa8lnujwva8997a5q42nckw8z55qm7tkq0u4k03nz6zc74ze780qe","breadcrumbs":"Core Ledger » jcli » Address » Address for Account","id":"86","title":"Address for Account"},"87":{"body":"You can decide to change the address prefix, allowing you to provide more enriched data to the user. However, this prefix is not forwarded to the node, it is only for UI/UX. $ jcli address \\ account \\ --prefix=address_ \\ ed25519_pk1yx6q8rsndawfx8hjzwntfs2h2c37v5g6edv67hmcxvrmxfjdz9wqeejchg\naddress_1q5smgquwzdh4eyc77gf6ddxp2atz8ej3rt94nt6l0qes0vexf5g4cw68kdx Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Address » changing the address prefix","id":"87","title":"changing the address prefix"},"88":{"body":"Tooling for offline transaction creation","breadcrumbs":"Core Ledger » jcli » Certificate » Certificate","id":"88","title":"Certificate"},"89":{"body":"Builds a stake pool registration certificate. jcli certificate new stake-pool-registration \\ --vrf-key \\ --kes-key \\ --start-validity \\ --management-threshold \\ --owner \\ [--operator ] \\ [] Where: --operator - optional , public key of the operator(s) of the pool. output-file - optional , write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool registration certificate","id":"89","title":"Building stake pool registration certificate"},"9":{"body":"Blocks represent the spine of the blockchain, safely and securely linking blocks in a chain, whilst grouping valid fragments together. Blocks are composed of 2 parts: The header The content The header link the content with the blocks securely together, while the content is effectively a sequence of fragments.","breadcrumbs":"Core Ledger » General Concepts » Blockchain concepts » Blocks","id":"9","title":"Blocks"},"90":{"body":"It is possible to retire a stake pool from the blockchain. By doing so the stake delegated to the stake pool will become dangling and will need to be re-delegated. Remember though that the action won’t be applied until the next following epoch. I.e. the certificate will take a whole epoch before being applied, this should leave time for stakers to redistribute their stake to other pools before having their stake becoming dangling. It might be valuable for a stake pool operator to keep the stake pool running until the stake pool retirement certificate is fully applied in order to not miss any potential rewards. example: jcli certificate new stake-pool-retirement \\ --pool-id \\ --retirement-time \\ [] where: output-file - optional , write the output to the given file or print it to the standard output if not defined. --retirement-time - is the number of seconds since the start in order to make the stake pool retire. 0 means as soon as possible. --pool-id - hex-encoded stake pool ID. Can be retrieved using jcli certificate get-stake-pool-id command. See here for more details.","breadcrumbs":"Core Ledger » jcli » Certificate » Retiring a stake pool","id":"90","title":"Retiring a stake pool"},"91":{"body":"Builds a stake pool delegation certificate. jcli certificate new stake-delegation [--output ] Where: -o, --output - optional , write the output to the given file or print it to the standard output if not defined - the public key used in the stake key registration ... - hex-encoded stake pool IDs and their numeric weights in format “pool_id:weight” . If weight is not provided, it defaults to 1 .","breadcrumbs":"Core Ledger » jcli » Certificate » Building stake pool delegation certificate","id":"91","title":"Building stake pool delegation certificate"},"92":{"body":"Builds an update proposal certificate. jcli certificate new update-proposal \\ \\ \\ [] Where: - the proposer ID, public key of the one who will sign this certificate - optional , the file path to the config file defining the config param changes. If omitted it will be read from the standard input. output-file - optional , write the output to the given file or print it to the standard output if not defined For example your config file may look like: # The block0-date defines the date the blockchain starts # expected value in seconds since UNIX_EPOCH # # By default the value will be the current date and time. Or you can # add a specific time by entering the number of seconds since UNIX # Epoch\n- Block0Date: 17 # This is the type of discrimination of the blockchain # if this blockchain is meant for production then # use 'production' otherwise use 'test'.\n- Discrimination: test # The initial consensus version: # # * BFT consensus: bft # * Genesis Praos consensus: genesis\n- ConsensusVersion: bft # Number of slots in each epoch.\n- SlotsPerEpoch: 42 # The slot duration, in seconds, is the time between the creation # of 2 blocks\n- SlotDuration: 79 # Epoch stability depth\n- EpochStabilityDepth: 12 # Genesis praos active slot coefficient # Determines minimum stake required to try becoming slot leader, must be in range (0,1]\n- ConsensusGenesisPraosActiveSlotsCoeff: \"0.004\" # This is the size, in bytes, of all the contents of the block (excluding the # block header).\n- BlockContentMaxSize: 96 # Add a new bft leader\n- AddBftLeader: ed25519_pk1g53asm6l4gcwk2pm5ylr092umaur5yes47rqv7ng5yl525x8g8mq5nk7x7 # Remove a bft leader\n- RemoveBftLeader: ed25519_pk1a3sjcg6gt4d05k5u6uqyzmsap8cjw37ul9cgztz8m697lvkz26uqg49nm3 # The fee calculations settings # # total fees: constant + (num_inputs + num_outputs) * coefficient [+ certificate]\n- LinearFee: # this is the minimum value to pay for every transaction constant: 57 # the additional fee to pay for every inputs and outputs coefficient: 14 # the additional fee to pay if the transaction embeds a certificate certificate: 95 # (optional) fees for different types of certificates, to override the one # given in `certificate` just above # # here: all certificate fees are set to `4` except for pool registration # and stake delegation which are respectively `5` and `2`. per_certificate_fees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Proposal expiration in epochs\n- ProposalExpiration: 68 # The speed to update the KES Key in seconds\n- KesUpdateSpeed: 120 # Increase the treasury amount\n- TreasuryAdd: 10000 # Set the total reward supply available for monetary creation\n- RewardPot: 100000000000000 # Set the treasury parameters, this is the tax type, just as in stake pool # registration certificate parameters. # # When distributing the rewards, the treasury will be first serve as per # the incentive specification document\n- TreasuryParams: # the fix value the treasury will take from the total reward pot of the epoch fixed: 1000 # the extra percentage the the treasury will take from the reward pot of the epoch ratio: \"1/10\" # it is possible to add a max bound to the total value the treasury takes # at each reward distribution. For example, one could cap the treasury tax # to 10000. Uncomment the following line to apply a max limit: max_limit: 10000 # set the reward supply consumption. These parameters will define how the # total_reward_supply is consumed for the stake pool reward # # There's fundamentally many potential choices for how rewards are contributed back, and here's two potential valid examples: # # Linear formula: constant - ratio * (#epoch after epoch_start / epoch_rate) # Halving formula: constant * ratio ^ (#epoch after epoch_start / epoch_rate)\n- RewardParams: halving: # or use \"linear\" for the linear formula # In the linear formula, it represents the starting point of the contribution # at #epoch=0, whereas in halving formula is used as starting constant for # the calculation. constant: 2 # In the halving formula, an effective value between 0.0 to 1.0 indicates a # reducing contribution, whereas above 1.0 it indicate an acceleration of contribution. # # However in linear formula the meaning is just a scaling factor for the epoch zone # (current_epoch - start_epoch / epoch_rate). Further requirement is that this ratio # is expressed in fractional form (e.g. 1/2), which allow calculation in integer form. ratio: 3/68 # indicates when this contribution start. note that if the epoch is not # the same or after the epoch_start, the overall contribution is zero. epoch_start: 89 # the rate at which the contribution is tweaked related to epoch. epoch_rate: 20 # Fees for different types of certificates, to override the one # given in `certificate` just above.\n- PerCertificateFees: # (optional) if not specified, the pool registration certificate fee will be # the one set by linear_fees.certificate certificate_pool_registration: 5 # (optional) if not specified, the delegation certificate fee will be # the one set by linear_fees.certificate certificate_stake_delegation: 2 # (optional) if not specified, the owner delegation certificate fee will be # the one set by linear_fees.certificate. Uncomment to set the owner stake # delegation to `1` instead of default `4`: certificate_owner_stake_delegation: 1 # Set where to send the fees generated by transactions activity. # # It is possible to send all the generated fees to the \"treasury\"\n- FeesInTreasury: rewards - RewardLimitNone # Limit the epoch total reward drawing limit to a portion of the total # active stake of the system. # # for example, if set to 10%, the reward drawn will be bounded by the # 10% of the total active stake.\n- RewardLimitByAbsoluteStake: 22/72 # Settings to incentivize the numbers of stake pool to be registered # on the blockchain. # # These settings does not prevent more stake pool to be added. For example # if there is already 1000 stake pools, someone can still register a new # stake pool and affect the rewards of everyone else too. # # if the threshold is reached, the pool doesn't really have incentive to # create more blocks than 1 / set-value-of-pools % of stake.\n- PoolRewardParticipationCapping: min: 8 max: 52 # Add a new committee id\n- AddCommitteeId: 8103973beaa56f4e9440004ee8e8f8359ea18499d4199c1b018c072e7f503ea0 # Remove a committee id\n- RemoveCommitteeId: 6375dcdd714e69c197e99c32486ec28f166a50da7a1e3694807cd8a76f1c8175 - PerVoteCertificateFees: certificate_vote_plan: 52 certificate_vote_cast: 57 # The transaction max expiry epochs\n- TransactionMaxExpiryEpochs: 91","breadcrumbs":"Core Ledger » jcli » Certificate » Building update proposal certificate","id":"92","title":"Building update proposal certificate"},"93":{"body":"Builds a vote cast certificate.","breadcrumbs":"Core Ledger » jcli » Certificate » Building vote cast certificate","id":"93","title":"Building vote cast certificate"},"94":{"body":"jcli certificate new update-cast public \\ --choice \\ --proposal-index \\ --vote-plan-id \\ --output Where: - the number of choice within the proposal you vote for - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional write the output to the given file or print it to the standard output if not defined","breadcrumbs":"Core Ledger » jcli » Certificate » Public vote cast","id":"94","title":"Public vote cast"},"95":{"body":"jcli certificate new update-cast private \\ --choice \\ --options-size \\ --proposal-index \\ --vote-plan-id \\ --key-path --output Where: - the number of choice within the proposal you vote for - size of voting options - the number of proposal in the vote plan you vote for - the vote plan identified on the blockchain - optional key to encrypt the vote with, if not provided read secret key from the stdit - optional write the output to the given file or print it to the standard output if not defined Found a bug? Edit this page on GitHub.","breadcrumbs":"Core Ledger » jcli » Certificate » Private vote cast","id":"95","title":"Private vote cast"},"96":{"body":"Tooling for working with a genesis file","breadcrumbs":"Core Ledger » jcli » Genesis » Genesis","id":"96","title":"Genesis"},"97":{"body":"jcli genesis [subcommand]","breadcrumbs":"Core Ledger » jcli » Genesis » Usage","id":"97","title":"Usage"},"98":{"body":"decode: Print the YAML file corresponding to an encoded genesis block. encode: Create the genesis block of the blockchain from a given yaml file. hash: Print the block hash of the genesis init: Create a default Genesis file with appropriate documentation to help creating the YAML file help","breadcrumbs":"Core Ledger » jcli » Genesis » Subcommands","id":"98","title":"Subcommands"},"99":{"body":"","breadcrumbs":"Core Ledger » jcli » Genesis » Examples","id":"99","title":"Examples"}},"length":511,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.6457513110645907}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.0},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.1622776601683795},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.1622776601683795},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":16,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":2.449489742783178},"85":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"11":{"tf":1.0},"173":{"tf":1.4142135623730951},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":79,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.4142135623730951},"318":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.7320508075688772},"341":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.23606797749979},"278":{"tf":1.0},"303":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.0},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":12,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.0},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":82,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"458":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":2.0},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":3.605551275463989},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.242640687119285},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"248":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.7320508075688772},"320":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"331":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":2.0},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"289":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.0},"91":{"tf":1.7320508075688772},"92":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":1.7320508075688772},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.0},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":44,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.0},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"340":{"tf":2.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"361":{"tf":1.0},"392":{"tf":1.7320508075688772},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.7320508075688772},"339":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.0},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":43,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":53,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.0},"40":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.0},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":73,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"367":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.7320508075688772},"397":{"tf":2.0},"399":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.449489742783178},"485":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"473":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.4142135623730951},"71":{"tf":2.0}},"e":{"df":18,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"484":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.4641016151377544}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"496":{"tf":1.0},"507":{"tf":1.0}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":2.0},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":13,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.0},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"432":{"tf":2.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.7320508075688772},"444":{"tf":2.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":73,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":2.8284271247461903},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":3.3166247903554},"377":{"tf":3.1622776601683795},"378":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.7320508075688772},"439":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.4142135623730951},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.0},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":26,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.0},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.6457513110645907},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"432":{"tf":1.0}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.0},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"485":{"tf":1.0},"491":{"tf":2.8284271247461903},"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.4641016151377544},"126":{"tf":2.23606797749979},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.4641016151377544},"476":{"tf":3.3166247903554},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"47":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"480":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.0},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":20,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"269":{"tf":2.0},"276":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":2.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"381":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":2.23606797749979},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.0}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":53,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.7320508075688772},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":2.8284271247461903},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"189":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.449489742783178},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":13,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":1.4142135623730951},"3":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.4142135623730951},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"484":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.4142135623730951},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":1.7320508075688772},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.23606797749979},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.6457513110645907},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":25,"docs":{"196":{"tf":1.0},"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.0}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.0},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":2,"docs":{"191":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":8,"docs":{"196":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":3.3166247903554},"151":{"tf":3.605551275463989},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.23606797749979},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":61,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.099504938362077},"450":{"tf":34.55430508634199},"451":{"tf":2.0},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.0},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.449489742783178},"163":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"11":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":2.23606797749979},"119":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":11,"docs":{"174":{"tf":1.4142135623730951},"228":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"3":{"tf":1.0},"422":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":16,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":16,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"299":{"tf":4.0},"300":{"tf":1.4142135623730951},"301":{"tf":2.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":25,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"232":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":1.7320508075688772},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.0}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.0},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":2.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":3.605551275463989},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"407":{"tf":1.0},"462":{"tf":1.7320508075688772},"50":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.4142135623730951}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":72,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":125,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.7416573867739413},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":2.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.23606797749979},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":2.6457513110645907},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":5.291502622129181},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"25":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"16":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"36":{"tf":1.0},"446":{"tf":1.0},"458":{"tf":1.4142135623730951},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.4142135623730951},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"422":{"tf":1.0},"426":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":3.3166247903554},"191":{"tf":2.23606797749979},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":46,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":3.1622776601683795},"124":{"tf":3.1622776601683795},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.605551275463989},"91":{"tf":1.7320508075688772},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":1.7320508075688772},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"391":{"tf":1.0},"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.23606797749979},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.23606797749979},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"118":{"tf":1.4142135623730951},"153":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":51,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.6457513110645907},"436":{"tf":3.0},"437":{"tf":3.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":2.8284271247461903},"501":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.47213595499958},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":76,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"153":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.1622776601683795},"126":{"tf":2.23606797749979},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":13,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":2.6457513110645907},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.23606797749979},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.4142135623730951},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":66,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"334":{"tf":2.449489742783178},"335":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":1.7320508075688772},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":6.244997998398398},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"479":{"tf":1.0},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.0},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":36,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.6457513110645907},"346":{"tf":1.0},"347":{"tf":2.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":19,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.0},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":74,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":4.242640687119285},"124":{"tf":2.449489742783178},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.449489742783178},"157":{"tf":2.0},"160":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":2.23606797749979},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":3.605551275463989},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":2.6457513110645907},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"321":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"332":{"tf":1.7320508075688772},"34":{"tf":2.23606797749979},"35":{"tf":2.449489742783178},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":3.605551275463989},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"443":{"tf":2.0},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":3.605551275463989},"91":{"tf":2.23606797749979},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":79,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":2.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":1.7320508075688772},"410":{"tf":1.0},"412":{"tf":1.0},"439":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.0},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":1.4142135623730951},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.1622776601683795}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.242640687119285},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":69,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":2.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.6457513110645907},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":2.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":2.0},"289":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":2.6457513110645907},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"310":{"tf":2.0},"311":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":4.0},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"232":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":28,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":66,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":3.872983346207417},"130":{"tf":4.69041575982343},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":3.3166247903554},"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":2.449489742783178},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"200":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":1.7320508075688772},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"216":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"418":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.7320508075688772}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":36,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"299":{"tf":1.0},"3":{"tf":1.0},"346":{"tf":1.7320508075688772},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"379":{"tf":1.0},"386":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.23606797749979},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":33,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":25,"docs":{"104":{"tf":1.7320508075688772},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":19,"docs":{"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":58,"docs":{"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"147":{"tf":3.0},"148":{"tf":2.0},"149":{"tf":4.69041575982343},"151":{"tf":4.795831523312719},"152":{"tf":3.872983346207417},"174":{"tf":1.0},"191":{"tf":3.3166247903554},"196":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":3.605551275463989},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.8284271247461903},"95":{"tf":3.1622776601683795}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.0},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.449489742783178},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"477":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.0},"142":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":22,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"287":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{",":{"1":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},".":{"0":{".":{"0":{".":{"0":{":":{"1":{"2":{"0":{"8":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"0":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"268":{"tf":1.0}}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"1":{".":{"0":{"df":7,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"185":{"tf":1.0},"268":{"tf":1.0}}},"2":{"2":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"2":{"3":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"1":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{".":{"6":{"c":{"1":{"df":0,"docs":{},"e":{"8":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"e":{"5":{"d":{"6":{"a":{"b":{"c":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":2.0}}},"1":{")":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{"[":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"1":{"1":{"b":{"9":{"c":{"6":{"2":{"6":{"7":{"5":{"9":{"df":0,"docs":{},"f":{"1":{"9":{"d":{"9":{"d":{"0":{"3":{"1":{"5":{"a":{"9":{"b":{"4":{"2":{"4":{"9":{"2":{"b":{"a":{"4":{"9":{"7":{"4":{"3":{"8":{"c":{"1":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"0":{"2":{"6":{"d":{"6":{"6":{"4":{"c":{"9":{"df":0,"docs":{},"f":{"3":{"2":{"4":{"df":0,"docs":{},"e":{"c":{"b":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"2":{"0":{"3":{"0":{"4":{"0":{"5":{"0":{"6":{"0":{"7":{"0":{"8":{"0":{"9":{"0":{"a":{"0":{"b":{"0":{"c":{"0":{"d":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"1":{"0":{"1":{"1":{"1":{"2":{"1":{"3":{"1":{"4":{"1":{"5":{"1":{"6":{"1":{"7":{"1":{"8":{"1":{"9":{"1":{"a":{"1":{"b":{"1":{"c":{"1":{"d":{"1":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"2":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"4":{"9":{"d":{"d":{"6":{"6":{"5":{"2":{"4":{"1":{"1":{"1":{"3":{"4":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"6":{"7":{"7":{"d":{"1":{"df":0,"docs":{},"e":{"b":{"c":{"2":{"5":{"2":{"4":{"7":{"a":{"5":{"b":{"a":{"2":{"d":{"0":{"9":{"4":{"9":{"1":{"3":{"df":0,"docs":{},"f":{"5":{"2":{"a":{"a":{"4":{"d":{"b":{"2":{"6":{"5":{"df":0,"docs":{},"e":{"a":{"c":{"0":{"3":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"b":{"0":{"d":{"8":{"4":{"df":0,"docs":{},"f":{"4":{"0":{"9":{"0":{"0":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"8":{"5":{"8":{"3":{"5":{"3":{"9":{"5":{"b":{"c":{"3":{"8":{"d":{"a":{"3":{"a":{"b":{"8":{"1":{"4":{"3":{"5":{"d":{"1":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"2":{"7":{"d":{"4":{"1":{"9":{"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"7":{"d":{"1":{"6":{"a":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"a":{"b":{"c":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"d":{"2":{"7":{"2":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"0":{"2":{"d":{"0":{"b":{"0":{"c":{"9":{"c":{"d":{"4":{"7":{"b":{"1":{"6":{"df":0,"docs":{},"e":{"5":{"3":{"5":{"6":{"a":{"b":{"3":{"df":0,"docs":{},"f":{"b":{"2":{"3":{"3":{"0":{"d":{"d":{"9":{"d":{"1":{"df":0,"docs":{},"e":{"9":{"7":{"2":{"a":{"b":{"5":{"4":{"9":{"4":{"3":{"6":{"5":{"3":{"0":{"9":{"d":{"2":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.4142135623730951},"391":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"0":{":":{"2":{"6":{".":{"2":{"0":{"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"391":{"tf":1.0}},"t":{"1":{"0":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"df":1,"docs":{"391":{"tf":1.4142135623730951}},"t":{"0":{"7":{":":{"4":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"5":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"4":{"1":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":2,"docs":{"381":{"tf":3.872983346207417},"391":{"tf":2.449489742783178}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"381":{"tf":2.449489742783178}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":1,"docs":{"120":{"tf":2.0}}},"9":{"df":0,"docs":{},"t":{"1":{"2":{":":{"3":{"2":{":":{"5":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{":":{"1":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"]":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"f":{"3":{"9":{"a":{"8":{"7":{"d":{"3":{"df":0,"docs":{},"f":{"1":{"8":{"a":{"1":{"8":{"8":{"b":{"4":{"0":{"b":{"a":{"8":{"c":{"2":{"0":{"3":{"df":0,"docs":{},"f":{"8":{"5":{"df":0,"docs":{},"f":{"3":{"7":{"a":{"df":0,"docs":{},"f":{"6":{"6":{"5":{"d":{"df":0,"docs":{},"f":{"2":{"2":{"9":{"df":0,"docs":{},"f":{"b":{"4":{"8":{"2":{"1":{"df":0,"docs":{},"e":{"4":{"7":{"7":{"df":0,"docs":{},"f":{"6":{"9":{"9":{"8":{"8":{"6":{"4":{"2":{"7":{"3":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":39,"docs":{"107":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":2.0},"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"280":{"tf":2.23606797749979},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"391":{"tf":2.0},"462":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"1":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"1":{"0":{"df":4,"docs":{"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"3":{"df":1,"docs":{"386":{"tf":1.0}}},"5":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"0":{"/":{"1":{"0":{"0":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"122":{"tf":2.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"167":{"tf":1.0},"188":{"tf":1.0},"346":{"tf":1.0}}},"df":3,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":12,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"165":{"tf":1.7320508075688772},"174":{"tf":2.0},"176":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"68":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"7":{"7":{"8":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"165":{"tf":2.23606797749979},"174":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"383":{"tf":2.0},"92":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":14,"docs":{"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"33":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"2":{"4":{"0":{"0":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"115":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"7":{"9":{"1":{"1":{"0":{"6":{"3":{"df":3,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"128":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"300":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"1":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"7":{"5":{"0":{"8":{"8":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}},"t":{"1":{"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"3":{"7":{":":{"0":{"9":{".":{"4":{"6":{"9":{"1":{"0":{"1":{"1":{"6":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"7":{".":{"0":{"7":{"0":{"1":{"6":{"2":{"1":{"1":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"0":{"6":{"0":{"8":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":6,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"329":{"tf":1.0},"391":{"tf":1.4142135623730951},"439":{"tf":1.0}}},"df":4,"docs":{"107":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{".":{"1":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"3":{"0":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":3,"docs":{"299":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"261":{"tf":1.0},"360":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"7":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"394":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"df":1,"docs":{"209":{"tf":1.0}}},":":{"4":{"3":{"df":1,"docs":{"439":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"3":{"/":{"1":{"9":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":1,"docs":{"374":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"2":{"7":{"3":{"7":{"1":{"7":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}},"4":{"6":{"3":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"5":{"5":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"0":{":":{"4":{"5":{":":{"5":{"7":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"1":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"5":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"1":{"9":{"4":{"9":{"6":{"1":{"8":{"8":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"2":{"4":{":":{"1":{"2":{".":{"0":{"1":{"0":{"2":{"3":{"1":{"2":{"8":{"1":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"381":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"0":{"df":2,"docs":{"165":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"5":{"0":{"8":{"2":{"2":{"0":{"1":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"351":{"tf":1.0},"434":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"6":{"8":{"3":{"0":{"9":{"1":{"3":{"9":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"5":{"0":{"6":{"8":{"5":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"8":{"7":{"9":{"9":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}},"t":{"0":{"5":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"8":{"8":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"0":{"3":{"7":{"8":{"6":{"4":{"5":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"t":{"1":{"2":{":":{"2":{"5":{":":{"0":{"0":{".":{"4":{"1":{"7":{"2":{"6":{"3":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{":":{"1":{"8":{":":{"3":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"2":{"5":{"4":{"5":{"5":{"5":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"5":{".":{"0":{"1":{"0":{"1":{"1":{"3":{"3":{"3":{"3":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"10":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"180":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"285":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"346":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":3.1622776601683795},"391":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.23606797749979}}},"2":{".":{"0":{"df":2,"docs":{"213":{"tf":1.0},"507":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"9":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}},"df":1,"docs":{"211":{"tf":1.0}}},"df":1,"docs":{"176":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"2":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"1":{"0":{"1":{"8":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.0},"123":{"tf":2.0},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"391":{"tf":3.4641016151377544}}},"3":{"df":1,"docs":{"420":{"tf":1.0}}},"9":{"0":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"165":{"tf":1.0},"242":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"59":{"tf":1.0},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"1":{"3":{"6":{"6":{"4":{"0":{"2":{"1":{"2":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"1":{"1":{"2":{"4":{"2":{"4":{"7":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"/":{"7":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"9":{"1":{"6":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":1,"docs":{"174":{"tf":1.0}}},"4":{"3":{"9":{"9":{"3":{"6":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"76":{"tf":1.0}}},"5":{"5":{"df":2,"docs":{"174":{"tf":1.0},"176":{"tf":1.0}}},"6":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}},"df":2,"docs":{"33":{"tf":1.0},"391":{"tf":1.0}}},"6":{"9":{"7":{"7":{"2":{"7":{"4":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"0":{"b":{"8":{"b":{"d":{"7":{"df":0,"docs":{},"e":{"3":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"7":{"6":{"9":{"8":{"6":{"4":{"df":0,"docs":{},"f":{"0":{"0":{"d":{"7":{"c":{"4":{"a":{"a":{"b":{"9":{"6":{"8":{"7":{"6":{"0":{"df":0,"docs":{},"f":{"6":{"6":{"3":{"a":{"7":{"df":0,"docs":{},"e":{"0":{"b":{"3":{"c":{"df":0,"docs":{},"e":{"2":{"1":{"3":{"c":{"4":{"b":{"2":{"1":{"6":{"5":{"1":{"b":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"7":{"4":{"4":{"2":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":31,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"126":{"tf":1.0},"139":{"tf":2.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.7320508075688772},"280":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"40":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"504":{"tf":1.4142135623730951},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979}}},"3":{".":{"1":{"2":{"4":{".":{"5":{"5":{".":{"9":{"1":{":":{"3":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"d":{"2":{"0":{"d":{"2":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}},"m":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"2":{"2":{":":{"3":{"7":{":":{"4":{"6":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"9":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"8":{"4":{"2":{"9":{"3":{"5":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"6":{"5":{"7":{"1":{"2":{"5":{"2":{"1":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"9":{"0":{"4":{"1":{"1":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"3":{"3":{"1":{"1":{"8":{"0":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"8":{"b":{"5":{"9":{"9":{"a":{"6":{"5":{"5":{"5":{"7":{"b":{"2":{"a":{"2":{"df":2,"docs":{"334":{"tf":1.0},"346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"9":{"0":{"2":{"4":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"8":{"1":{"5":{"6":{"0":{"2":{"c":{"0":{"9":{"6":{"df":0,"docs":{},"f":{"c":{"b":{"b":{"9":{"1":{"0":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"1":{"9":{"c":{"2":{"9":{"6":{"c":{"3":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"f":{"7":{"3":{"0":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"f":{"4":{"4":{"6":{"a":{"9":{"b":{"d":{"2":{"5":{"5":{"3":{"1":{"4":{"5":{"6":{"8":{"8":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"1":{"5":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"6":{"1":{"6":{"4":{"4":{"0":{"0":{"0":{"0":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"2":{"9":{"1":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}},"b":{"4":{"9":{"a":{"0":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0},"84":{"tf":1.0}},"f":{"d":{"4":{"5":{"a":{"6":{"4":{"a":{"df":0,"docs":{},"e":{"5":{"a":{"3":{"b":{"9":{"c":{"3":{"5":{"df":0,"docs":{},"e":{"3":{"7":{"1":{"1":{"4":{"b":{"a":{"a":{"0":{"9":{"9":{"b":{"8":{"b":{"0":{"1":{"2":{"8":{"5":{"df":0,"docs":{},"f":{"7":{"d":{"7":{"4":{"b":{"3":{"7":{"1":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"f":{"2":{"2":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"9":{"3":{"d":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"7":{"0":{"7":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"6":{"0":{"df":1,"docs":{"351":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"8":{"1":{"6":{"1":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"268":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"8":{"2":{"3":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"4":{"9":{"7":{"8":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"4":{"1":{"4":{"0":{"8":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"3":{"1":{"2":{"1":{"4":{"9":{"8":{"8":{"b":{"7":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"a":{"5":{"5":{"a":{"3":{"4":{"2":{"9":{"7":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"1":{"df":0,"docs":{},"f":{"3":{"d":{"8":{"c":{"b":{"a":{"4":{"6":{"0":{"d":{"0":{"3":{"1":{"a":{"8":{"3":{"9":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"df":2,"docs":{"180":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"4":{"b":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"1":{"7":{"9":{"1":{"2":{"4":{"1":{"3":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"5":{"1":{"4":{"7":{"0":{"2":{"9":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"6":{"6":{"7":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"4":{"9":{"5":{"7":{"8":{"3":{"5":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"5":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.0},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"506":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"5":{"0":{"0":{"0":{"df":3,"docs":{"165":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"329":{"tf":1.0},"355":{"tf":1.0},"391":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"267":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.0}},"f":{"2":{"1":{"a":{"c":{"6":{"b":{"d":{"3":{"df":0,"docs":{},"f":{"5":{"7":{"df":0,"docs":{},"f":{"2":{"3":{"1":{"c":{"4":{"b":{"df":0,"docs":{},"f":{"9":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"c":{"4":{"5":{"df":0,"docs":{},"e":{"2":{"5":{"2":{"9":{"c":{"4":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"d":{"6":{"8":{"df":0,"docs":{},"f":{"9":{"2":{"4":{"1":{"0":{"d":{"b":{"df":0,"docs":{},"f":{"7":{"6":{"4":{"7":{"5":{"4":{"1":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"6":{"0":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"3":{"4":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"3":{"2":{"6":{"b":{"2":{"7":{"3":{"9":{"3":{"5":{"6":{"a":{"b":{"6":{"d":{"1":{"4":{"6":{"2":{"4":{"a":{"5":{"3":{"6":{"c":{"a":{"6":{"9":{"6":{"df":0,"docs":{},"f":{"1":{"0":{"2":{"0":{"4":{"9":{"8":{"b":{"3":{"6":{"4":{"5":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"8":{"3":{"4":{"4":{"c":{"0":{"8":{"4":{"b":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"9":{"4":{"8":{"0":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"3":{"6":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"2":{"2":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"7":{"3":{"7":{"6":{"0":{"3":{"df":0,"docs":{},"e":{"6":{"d":{"2":{"7":{"d":{"3":{"6":{"c":{"8":{"a":{"a":{"c":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"6":{"4":{"0":{"6":{"df":0,"docs":{},"e":{"8":{"2":{"0":{"3":{"6":{"1":{"a":{"8":{"a":{"c":{"6":{"5":{"c":{"7":{"d":{"c":{"6":{"6":{"3":{"df":0,"docs":{},"f":{"6":{"d":{"1":{"c":{"df":3,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"5":{"1":{"4":{"1":{"0":{"5":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"f":{"0":{"3":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"f":{"3":{"7":{"df":0,"docs":{},"e":{"b":{"7":{"b":{"9":{"8":{"7":{"d":{"b":{"c":{"9":{"0":{"1":{"7":{"b":{"8":{"a":{"9":{"2":{"8":{"2":{"8":{"7":{"a":{"3":{"d":{"7":{"7":{"d":{"0":{"8":{"6":{"c":{"d":{"9":{"3":{"c":{"d":{"9":{"a":{"d":{"0":{"5":{"b":{"c":{"b":{"a":{"7":{"df":0,"docs":{},"e":{"6":{"0":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"1":{"9":{"6":{"3":{"9":{"a":{"c":{"c":{"df":0,"docs":{},"f":{"2":{"d":{"7":{"6":{"b":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"6":{"0":{"5":{"a":{"7":{"c":{"5":{"1":{"5":{"df":0,"docs":{},"e":{"c":{"7":{"8":{"1":{"df":0,"docs":{},"f":{"d":{"3":{"9":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.0}}},"2":{"0":{"4":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"5":{"d":{"c":{"d":{"d":{"7":{"1":{"4":{"df":0,"docs":{},"e":{"6":{"9":{"c":{"1":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"9":{"c":{"3":{"2":{"4":{"8":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"8":{"df":0,"docs":{},"f":{"1":{"6":{"6":{"a":{"5":{"0":{"d":{"a":{"7":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"6":{"9":{"4":{"8":{"0":{"7":{"c":{"d":{"8":{"a":{"7":{"6":{"df":0,"docs":{},"f":{"1":{"c":{"8":{"1":{"7":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"3":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}},"6":{"3":{"7":{".":{"3":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"174":{"tf":1.0}}},"7":{"7":{"8":{"d":{"3":{"7":{"1":{"6":{"1":{"c":{"3":{"9":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"6":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"a":{"8":{"a":{"3":{"1":{"a":{"5":{"5":{"b":{"c":{"c":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"2":{"d":{"1":{"df":0,"docs":{},"e":{"a":{"2":{"5":{"4":{"a":{"4":{"6":{"7":{"d":{"8":{"c":{"d":{"9":{"9":{"4":{"7":{"0":{"9":{"df":0,"docs":{},"f":{"c":{"4":{"0":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":3,"docs":{"148":{"tf":1.0},"191":{"tf":1.0},"391":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"6":{"3":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"a":{"9":{"9":{"4":{"9":{"6":{"4":{"5":{"c":{"d":{"b":{"0":{"6":{"d":{"0":{"3":{"5":{"8":{"d":{"a":{"1":{"2":{"7":{"df":0,"docs":{},"e":{"8":{"9":{"7":{"c":{"b":{"b":{"0":{"a":{"7":{"b":{"9":{"2":{"a":{"1":{"d":{"9":{"d":{"b":{"8":{"df":0,"docs":{},"e":{"7":{"0":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"d":{"9":{"df":0,"docs":{},"e":{"7":{"d":{"a":{"6":{"a":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"92":{"tf":1.0}}},"d":{"b":{"6":{"df":0,"docs":{},"f":{"9":{"1":{"df":0,"docs":{},"f":{"3":{"c":{"9":{"2":{"c":{"0":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"7":{"b":{"3":{"d":{"d":{"4":{"9":{"7":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"a":{"2":{"7":{"5":{"2":{"2":{"9":{"d":{"2":{"a":{"b":{"4":{"d":{"b":{"a":{"6":{"a":{"1":{"b":{"3":{"0":{"c":{"df":0,"docs":{},"e":{"6":{"b":{"3":{"2":{"d":{"b":{"9":{"c":{"9":{"c":{"3":{"b":{"2":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"4":{"4":{"b":{"a":{"4":{"3":{"7":{"0":{"5":{"7":{"d":{"6":{"d":{"9":{"4":{"4":{"a":{"c":{"df":0,"docs":{},"e":{"6":{"7":{"9":{"b":{"7":{"df":0,"docs":{},"f":{"8":{"1":{"1":{"3":{"3":{"5":{"6":{"3":{"9":{"a":{"6":{"8":{"9":{"0":{"6":{"4":{"c":{"d":{"9":{"6":{"9":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"8":{"b":{"5":{"5":{"a":{"7":{"c":{"c":{"1":{"9":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"df":4,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"1":{"0":{"3":{"9":{"7":{"3":{"b":{"df":0,"docs":{},"e":{"a":{"a":{"5":{"6":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"9":{"4":{"4":{"0":{"0":{"0":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"f":{"8":{"3":{"5":{"9":{"df":0,"docs":{},"e":{"a":{"1":{"8":{"4":{"9":{"9":{"d":{"4":{"1":{"9":{"9":{"c":{"1":{"b":{"0":{"1":{"8":{"c":{"0":{"7":{"2":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"5":{"0":{"3":{"df":0,"docs":{},"e":{"a":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"5":{"8":{"6":{"7":{"6":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}},"2":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}},"4":{"4":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":2,"docs":{"139":{"tf":1.0},"92":{"tf":1.0}}},"d":{"9":{"4":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"f":{"c":{"c":{"9":{"a":{"5":{"6":{"6":{"df":0,"docs":{},"f":{"4":{"9":{"2":{"df":0,"docs":{},"e":{"6":{"3":{"3":{"5":{"8":{"5":{"8":{"d":{"b":{"6":{"4":{"5":{"6":{"9":{"1":{"df":0,"docs":{},"f":{"6":{"2":{"8":{"b":{"0":{"1":{"2":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"a":{"c":{"2":{"b":{"1":{"3":{"3":{"8":{"b":{"5":{"6":{"9":{"0":{"3":{"5":{"5":{"a":{"7":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"4":{"7":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"0":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":1,"docs":{"165":{"tf":1.0}}},"6":{"4":{"2":{"6":{"7":{"7":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"92":{"tf":1.0}}},"2":{"df":1,"docs":{"126":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"df":1,"docs":{"126":{"tf":1.0}}},"5":{"df":3,"docs":{"268":{"tf":1.0},"439":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"6":{"df":1,"docs":{"92":{"tf":1.0}}},"7":{"2":{"1":{"7":{"0":{"2":{"7":{"9":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"6":{"4":{"6":{"0":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"374":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":1,"docs":{"196":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"b":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"9":{"7":{"d":{"df":2,"docs":{"338":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":2.8284271247461903}}}}}}},"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"9":{"8":{"7":{"6":{"5":{"4":{"3":{"2":{"1":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"509":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}},"v":{"df":17,"docs":{"163":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"222":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"392":{"tf":1.0},"424":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"424":{"tf":1.0},"425":{"tf":1.0},"471":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"278":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"501":{"tf":1.0}}}}},"c":{"a":{"b":{"a":{"9":{"c":{"8":{"c":{"4":{"d":{"8":{"c":{"a":{"6":{"8":{"a":{"c":{"8":{"b":{"a":{"d":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"b":{"d":{"3":{"a":{"1":{"a":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"e":{"1":{"3":{"8":{"1":{"6":{"df":0,"docs":{},"f":{"4":{"0":{"6":{"9":{"7":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":2.23606797749979},"228":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"391":{"tf":1.7320508075688772},"425":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":18,"docs":{"237":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"r":{"d":{"df":3,"docs":{"278":{"tf":1.0},"434":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"424":{"tf":1.0},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":3.3166247903554},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.0},"141":{"tf":2.6457513110645907},"149":{"tf":2.449489742783178},"15":{"tf":3.3166247903554},"151":{"tf":2.23606797749979},"155":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"177":{"tf":1.0},"200":{"tf":1.7320508075688772},"299":{"tf":2.0},"32":{"tf":3.0},"33":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"391":{"tf":2.23606797749979},"439":{"tf":1.0},"500":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":2.23606797749979},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"421":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"30":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"219":{"tf":1.0},"419":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"148":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"278":{"tf":1.0},"499":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"90":{"tf":1.0}}}},"v":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"373":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.0},"286":{"tf":1.0},"386":{"tf":2.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"225":{"tf":1.0},"32":{"tf":1.0},"470":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"2":{"4":{"5":{"3":{"7":{"c":{"b":{"0":{"0":{"9":{"b":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"d":{"2":{"4":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"1":{"4":{"c":{"5":{"7":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"4":{"2":{"df":0,"docs":{},"e":{"9":{"b":{"b":{"0":{"d":{"df":2,"docs":{"107":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"f":{"d":{"2":{"c":{"c":{"a":{"7":{"df":0,"docs":{},"e":{"1":{"8":{"2":{"9":{"d":{"df":0,"docs":{},"f":{"2":{"6":{"c":{"5":{"7":{"b":{"3":{"4":{"0":{"a":{"9":{"8":{"b":{"9":{"d":{"5":{"1":{"3":{"b":{"7":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"8":{"5":{"6":{"1":{"8":{"8":{"3":{"df":0,"docs":{},"f":{"1":{"b":{"9":{"9":{"df":0,"docs":{},"f":{"3":{"b":{"9":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":18,"docs":{"169":{"tf":1.0},"273":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":2.0},"386":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"444":{"tf":1.0},"507":{"tf":1.0}}}}},"b":{"9":{"2":{"7":{"5":{"7":{"1":{"5":{"5":{"d":{"0":{"9":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"f":{"9":{"2":{"c":{"9":{"df":0,"docs":{},"f":{"1":{"0":{"0":{"8":{"6":{"6":{"a":{"9":{"2":{"d":{"d":{"d":{"d":{"3":{"5":{"a":{"b":{"d":{"2":{"a":{"7":{"8":{"9":{"a":{"4":{"4":{"a":{"df":0,"docs":{},"e":{"1":{"9":{"a":{"b":{"9":{"a":{"1":{"d":{"b":{"c":{"3":{"2":{"8":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":27,"docs":{"129":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"391":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"184":{"tf":1.0},"59":{"tf":1.0}}}}}}},"r":{"df":12,"docs":{"106":{"tf":1.4142135623730951},"123":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.280109889280518},"449":{"tf":12.96148139681572},"450":{"tf":44.955533585978046},"451":{"tf":2.0},"452":{"tf":3.872983346207417},"453":{"tf":7.483314773547883},"456":{"tf":2.23606797749979},"457":{"tf":2.23606797749979},"458":{"tf":3.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{":":{"\"":{"c":{"a":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"a":{"6":{"7":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"d":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"c":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"5":{"6":{"3":{"7":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"h":{"5":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"4":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"2":{"df":1,"docs":{"176":{"tf":1.0}}},"3":{"df":1,"docs":{"176":{"tf":1.0}}},"_":{"1":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"7":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"6":{"d":{"d":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"2":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"4":{"c":{"df":0,"docs":{},"w":{"6":{"8":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":82,"docs":{"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.449489742783178},"141":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":3.3166247903554},"176":{"tf":3.0},"177":{"tf":2.0},"180":{"tf":1.4142135623730951},"188":{"tf":3.3166247903554},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.449489742783178},"267":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":3.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":3.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":2.0},"422":{"tf":2.0},"424":{"tf":2.449489742783178},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":2.23606797749979},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"469":{"tf":1.4142135623730951},"47":{"tf":3.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"59":{"tf":3.3166247903554},"71":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.449489742783178},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"86":{"tf":2.23606797749979},"87":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"334":{"tf":1.7320508075688772},"346":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":43,"docs":{"11":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"425":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":2.449489742783178},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"263":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"21":{"tf":1.0},"76":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"459":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":7,"docs":{"424":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"497":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"489":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"185":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"228":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"a":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"422":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"277":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"196":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"273":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":2.0}},"s":{"df":1,"docs":{"242":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.0},"219":{"tf":3.7416573867739413},"242":{"tf":1.0},"293":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":1,"docs":{"383":{"tf":1.0}}},"2":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"346":{"tf":1.0},"470":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":59,"docs":{"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":2.23606797749979},"295":{"tf":1.0},"301":{"tf":1.0},"31":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"386":{"tf":1.0},"393":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"505":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"424":{"tf":1.0}},"g":{"df":1,"docs":{"444":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":21,"docs":{"17":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.4142135623730951},"220":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.7320508075688772},"422":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"392":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"219":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"106":{"tf":1.4142135623730951},"147":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":22,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"138":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"245":{"tf":1.0},"267":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.7320508075688772},"473":{"tf":1.0},"92":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.0}}},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"491":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"219":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"]":{")":{"df":0,"docs":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"141":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"31":{"tf":1.0},"35":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"218":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":2.0},"461":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"/":{"1":{"0":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":94,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":4.123105625617661},"449":{"tf":6.6332495807108},"450":{"tf":22.956480566497994},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":4.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":2.0},"478":{"tf":2.0},"479":{"tf":2.0},"480":{"tf":2.0},"481":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":2.0},"49":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"503":{"tf":1.0}}}}}},"p":{"df":10,"docs":{"107":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.4142135623730951},"361":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"476":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"419":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"53":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"df":13,"docs":{"174":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"355":{"tf":1.0},"443":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"500":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"200":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"499":{"tf":1.4142135623730951},"62":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"196":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"245":{"tf":2.449489742783178},"278":{"tf":1.0},"303":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"106":{"tf":1.0},"147":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}}}}},"m":{"df":2,"docs":{"463":{"tf":1.0},"490":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"17":{"tf":1.0},"370":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"1":{"2":{"3":{"4":{"df":2,"docs":{"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":3,"docs":{"424":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"235":{"tf":1.0},"237":{"tf":2.0},"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"q":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"122":{"tf":2.0},"177":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":20,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.4142135623730951},"209":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"227":{"tf":1.0},"391":{"tf":1.0},"487":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"287":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"144":{"tf":1.0},"47":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":4,"docs":{"200":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"225":{"tf":2.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"431":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"498":{"tf":1.0}}},"u":{"df":1,"docs":{"424":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"286":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"159":{"tf":1.0},"286":{"tf":1.4142135623730951},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"<":{"b":{"df":0,"docs":{},"r":{">":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":4,"docs":{"242":{"tf":1.0},"284":{"tf":1.0},"44":{"tf":2.23606797749979},"75":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0}}}},"df":14,"docs":{"211":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"248":{"tf":1.0},"283":{"tf":1.0},"306":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.4641016151377544},"450":{"tf":10.63014581273465},"453":{"tf":2.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":59,"docs":{"107":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":2.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.0},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.7320508075688772},"487":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"422":{"tf":1.0},"424":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"216":{"tf":1.0},"225":{"tf":2.0},"461":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.0},"208":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":2,"docs":{"338":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"9":{"7":{"b":{"4":{"5":{"a":{"4":{"0":{"2":{"4":{"5":{"1":{"5":{"4":{"0":{"df":0,"docs":{},"e":{"6":{"a":{"a":{"b":{"b":{"5":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"4":{"d":{"6":{"5":{"c":{"6":{"7":{"9":{"5":{"3":{"b":{"3":{"3":{"8":{"df":0,"docs":{},"e":{"0":{"4":{"c":{"5":{"2":{"c":{"0":{"0":{"a":{"a":{"0":{"8":{"8":{"6":{"b":{"d":{"1":{"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"143":{"tf":1.0},"174":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"431":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"299":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":2.0},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"424":{"tf":1.0},"443":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"23":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.7320508075688772}},"k":{"df":1,"docs":{"15":{"tf":1.0}}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"470":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":2.0},"476":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":20,"docs":{"147":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"307":{"tf":1.0},"351":{"tf":1.7320508075688772},"413":{"tf":1.0},"422":{"tf":1.0},"450":{"tf":2.6457513110645907},"476":{"tf":1.0}}},"h":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"14":{"tf":1.0},"373":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"219":{"tf":2.0},"300":{"tf":1.0}}}}}},"df":2,"docs":{"219":{"tf":2.0},"299":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"476":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"f":{"c":{"8":{"2":{"c":{"9":{"6":{"6":{"0":{"df":0,"docs":{},"e":{"2":{"8":{"d":{"4":{"d":{"c":{"b":{"4":{"d":{"1":{"c":{"8":{"a":{"3":{"9":{"0":{"3":{"5":{"0":{"b":{"1":{"8":{"d":{"0":{"4":{"4":{"9":{"6":{"c":{"2":{"a":{"c":{"8":{"4":{"7":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"267":{"tf":1.0},"286":{"tf":2.0},"299":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"424":{"tf":1.0},"462":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"3":{"2":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"473":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":13,"docs":{"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.4142135623730951},"422":{"tf":1.0},"430":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":30,"docs":{"147":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"175":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"15":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"20":{"tf":1.0},"216":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"73":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"472":{"tf":1.0},"476":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"\"":{":":{"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":16,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.4142135623730951},"383":{"tf":1.0},"462":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"24":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"299":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":20,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":2.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"208":{"tf":1.0},"241":{"tf":1.0},"261":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":2.0},"68":{"tf":1.0},"92":{"tf":2.23606797749979}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"22":{"tf":1.4142135623730951}},"g":{"df":2,"docs":{"191":{"tf":1.0},"374":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"196":{"tf":1.0},"219":{"tf":1.4142135623730951},"28":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"476":{"tf":1.0}}}}},"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"346":{"tf":1.4142135623730951}}},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":4,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"279":{"tf":1.4142135623730951},"465":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"227":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}},"b":{"df":1,"docs":{"209":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"0":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"261":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"374":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":20,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"211":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"360":{"tf":1.7320508075688772},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"92":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"0":{"9":{"7":{"1":{"5":{"2":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":101,"docs":{"10":{"tf":2.23606797749979},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":2.6457513110645907},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"261":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"405":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"447":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"458":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":88,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":3.3166247903554},"11":{"tf":2.8284271247461903},"110":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":2.23606797749979},"115":{"tf":2.0},"12":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":6.324555320336759},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":3.7416573867739413},"23":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":2.23606797749979},"262":{"tf":2.0},"278":{"tf":3.872983346207417},"279":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":3.7416573867739413},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"427":{"tf":1.7320508075688772},"434":{"tf":1.0},"439":{"tf":2.449489742783178},"444":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":2.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"281":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"2":{"0":{",":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"9":{"2":{",":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"2":{"4":{"5":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}},"o":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":4.0},"383":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"404":{"tf":1.4142135623730951},"465":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"508":{"tf":1.0}}},"l":{"df":5,"docs":{"219":{"tf":1.0},"242":{"tf":2.0},"285":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"466":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"139":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.4142135623730951},"231":{"tf":1.0},"471":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"286":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"230":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":10,"docs":{"213":{"tf":1.4142135623730951},"286":{"tf":1.0},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"214":{"tf":1.0}}}}},"o":{"a":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":82,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":4.358898943540674},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"130":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":2.0},"239":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":2.0},"265":{"tf":2.0},"268":{"tf":1.0},"271":{"tf":2.0},"290":{"tf":2.0},"293":{"tf":1.0},"297":{"tf":2.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":2.0},"320":{"tf":2.0},"325":{"tf":2.0},"331":{"tf":2.0},"336":{"tf":2.0},"343":{"tf":2.0},"348":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"362":{"tf":2.23606797749979},"391":{"tf":1.0},"412":{"tf":1.0},"43":{"tf":1.0},"462":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"225":{"tf":1.0},"237":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"40":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"470":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":17,"docs":{"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"/":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"7":{"1":{"6":{"9":{"c":{"8":{"df":0,"docs":{},"f":{"2":{"7":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"338":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"e":{"7":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"5":{"4":{"1":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"4":{"a":{"4":{"b":{"d":{"7":{"a":{"9":{"9":{"0":{"7":{"5":{"3":{"d":{"df":0,"docs":{},"f":{"4":{"1":{"8":{"3":{"df":0,"docs":{},"e":{"d":{"6":{"5":{"a":{"c":{"5":{"9":{"df":0,"docs":{},"e":{"3":{"4":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{"8":{"0":{"df":0,"docs":{},"f":{"1":{"4":{"df":0,"docs":{},"f":{"9":{"7":{"8":{"2":{"7":{"7":{"0":{"0":{"1":{"4":{"d":{"8":{"b":{"c":{"d":{"5":{"1":{"4":{"b":{"1":{"b":{"c":{"6":{"6":{"4":{"6":{"5":{"3":{"d":{"1":{"5":{"df":0,"docs":{},"f":{"7":{"3":{"a":{"7":{"1":{"5":{"8":{"2":{"5":{"4":{"7":{"3":{"0":{"c":{"6":{"df":0,"docs":{},"e":{"1":{"a":{"a":{"9":{"df":0,"docs":{},"f":{"3":{"5":{"6":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"df":0,"docs":{},"q":{"0":{"9":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"5":{"7":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"132":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"0":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"4":{"0":{"a":{"df":0,"docs":{},"f":{"3":{"0":{"5":{"df":0,"docs":{},"x":{"7":{"5":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"8":{"0":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"h":{"5":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"4":{"5":{"a":{"c":{"df":0,"docs":{},"x":{"c":{"d":{"df":0,"docs":{},"r":{"5":{"7":{"c":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"d":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"6":{"2":{"df":0,"docs":{},"v":{"9":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"7":{"8":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"8":{"8":{"5":{"c":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"d":{"4":{"a":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"t":{"7":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"6":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"5":{"0":{"4":{"df":0,"docs":{},"t":{"5":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"4":{"6":{"9":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"7":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"4":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"f":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"a":{"8":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"a":{"8":{"9":{"9":{"7":{"a":{"5":{"df":0,"docs":{},"q":{"4":{"2":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"z":{"5":{"5":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"z":{"c":{"7":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"7":{"8":{"0":{"df":0,"docs":{},"q":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"e":{"5":{"df":0,"docs":{},"p":{"0":{"0":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"6":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"2":{"4":{"a":{"2":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"j":{"6":{"df":3,"docs":{"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"2":{"0":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"a":{"2":{"df":0,"docs":{},"r":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"a":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"5":{"7":{"6":{"df":0,"docs":{},"m":{"c":{"9":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"5":{"7":{"0":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"p":{"5":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"s":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"0":{"2":{"df":0,"docs":{},"w":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"8":{"3":{"0":{"df":0,"docs":{},"v":{"2":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"7":{"df":0,"docs":{},"e":{"5":{"d":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"7":{"9":{"a":{"6":{"8":{"df":0,"docs":{},"r":{"8":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"l":{"7":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"z":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"213":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"df":2,"docs":{"130":{"tf":1.0},"72":{"tf":3.1622776601683795}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"174":{"tf":1.7320508075688772},"231":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"424":{"tf":1.0},"444":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":14,"docs":{"189":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.0},"299":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"490":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"16":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"242":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"424":{"tf":1.0}}}},"c":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.4142135623730951},"355":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"211":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":36,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"286":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"332":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"59":{"tf":1.0}},"’":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"232":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":35,"docs":{"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"461":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}}}}},"df":7,"docs":{"130":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"373":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":146,"docs":{"0":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.4142135623730951},"232":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"419":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"424":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":8,"docs":{"100":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":2.0},"307":{"tf":2.0},"413":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.4142135623730951}}}}},"c":{"7":{"2":{"d":{"4":{"c":{"a":{"9":{"5":{"7":{"b":{"0":{"3":{"d":{"7":{"c":{"7":{"9":{"5":{"5":{"9":{"6":{"b":{"7":{"df":0,"docs":{},"f":{"d":{"7":{"b":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"9":{"c":{"6":{"4":{"9":{"c":{"3":{"df":0,"docs":{},"e":{"2":{"8":{"7":{"7":{"c":{"5":{"0":{"8":{"c":{"0":{"4":{"6":{"6":{"a":{"b":{"c":{"8":{"6":{"0":{"4":{"8":{"3":{"2":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":33,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}},"n":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":5,"docs":{"113":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"286":{"tf":3.4641016151377544},"299":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}},"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"360":{"tf":1.4142135623730951},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":51,"docs":{"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":2.23606797749979},"167":{"tf":2.23606797749979},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":2.0},"172":{"tf":2.6457513110645907},"174":{"tf":3.3166247903554},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.7320508075688772},"237":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.3166247903554},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"91":{"tf":2.23606797749979},"92":{"tf":4.58257569495584},"93":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":27,"docs":{"102":{"tf":1.4142135623730951},"151":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.8284271247461903},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"31":{"tf":1.0},"424":{"tf":1.0},"444":{"tf":1.4142135623730951},"447":{"tf":4.58257569495584},"448":{"tf":28.106938645110393},"449":{"tf":51.57518783291051},"450":{"tf":175.89485495602196},"451":{"tf":8.18535277187245},"452":{"tf":13.856406460551018},"453":{"tf":29.748949561287034},"456":{"tf":8.366600265340756},"457":{"tf":8.366600265340756},"458":{"tf":11.357816691600547},"47":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.4142135623730951},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":2.0},"376":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"397":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"\"":{":":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":24,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.7320508075688772},"174":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"439":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"504":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"497":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":26,"docs":{"12":{"tf":1.0},"144":{"tf":2.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"422":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":14,"docs":{"149":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"292":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"0":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"24":{"tf":1.0},"462":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"219":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"434":{"tf":2.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}},"e":{"\"":{",":{"1":{"df":2,"docs":{"383":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"487":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}},"r":{"df":4,"docs":{"210":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"278":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":47,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.4142135623730951},"147":{"tf":1.0},"232":{"tf":2.0},"238":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"275":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.7320508075688772},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.7320508075688772},"301":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":2.23606797749979},"318":{"tf":1.0},"319":{"tf":2.23606797749979},"320":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"330":{"tf":2.23606797749979},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"342":{"tf":2.23606797749979},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"361":{"tf":1.0},"392":{"tf":2.0},"397":{"tf":1.0},"450":{"tf":2.6457513110645907},"456":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"105":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":2.0},"222":{"tf":1.0},"27":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.7320508075688772},"380":{"tf":1.0},"391":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"459":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"y":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":48,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":2.0},"461":{"tf":1.4142135623730951},"462":{"tf":2.0},"463":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":2.0},"475":{"tf":1.0},"476":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"2":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"_":{"1":{"2":{"3":{"4":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"_":{"9":{"8":{"0":{"7":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"1":{"2":{"_":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":12,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"293":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"396":{"tf":1.0},"490":{"tf":1.7320508075688772},"61":{"tf":1.0},"69":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":1,"docs":{"376":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}},"a":{"df":1,"docs":{"73":{"tf":1.0}},"n":{"d":{"df":56,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"301":{"tf":2.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.0},"326":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"358":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.7320508075688772},"394":{"tf":1.0},"40":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"285":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":2.0},"491":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"422":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"127":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":3.3166247903554},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":2.0}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"106":{"tf":1.0},"219":{"tf":1.0},"231":{"tf":1.0},"37":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"476":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":30,"docs":{"105":{"tf":1.0},"147":{"tf":2.0},"18":{"tf":1.0},"205":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":2.0},"230":{"tf":1.4142135623730951},"28":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"209":{"tf":1.4142135623730951},"377":{"tf":1.0},"465":{"tf":1.0}}},"t":{"df":3,"docs":{"219":{"tf":1.0},"36":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"211":{"tf":1.0},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"490":{"tf":1.0},"79":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"422":{"tf":1.0},"44":{"tf":2.23606797749979},"468":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"x":{"df":2,"docs":{"420":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951}}}},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"160":{"tf":1.0},"19":{"tf":1.0},"232":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"422":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":3,"docs":{"14":{"tf":1.0},"32":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.0},"7":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"191":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"209":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"486":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":15,"docs":{"191":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.7320508075688772},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"189":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"df":30,"docs":{"159":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":2.0},"261":{"tf":1.0},"268":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"300":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"390":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":115,"docs":{"115":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"275":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":2.0},"294":{"tf":2.0},"299":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":2.0},"326":{"tf":1.0},"334":{"tf":2.0},"337":{"tf":1.0},"346":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.7320508075688772},"39":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.0},"397":{"tf":2.449489742783178},"398":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":3.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":2.449489742783178},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"276":{"tf":2.0},"295":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.8284271247461903},"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"115":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":6,"docs":{"11":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}},"i":{"d":{"df":20,"docs":{"115":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"277":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"373":{"tf":1.0},"461":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"402":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.7320508075688772},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"180":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":2.0},"391":{"tf":1.0},"92":{"tf":2.449489742783178}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"470":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"129":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"475":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"m":{"df":9,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"24":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"409":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"115":{"tf":1.0}}},"df":26,"docs":{"10":{"tf":1.4142135623730951},"129":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":2.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"338":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.7320508075688772},"391":{"tf":2.23606797749979},"405":{"tf":1.0},"434":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":7,"docs":{"185":{"tf":1.0},"217":{"tf":1.0},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"476":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"351":{"tf":1.0},"504":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"174":{"tf":2.6457513110645907},"191":{"tf":1.0},"23":{"tf":1.0},"484":{"tf":2.8284271247461903},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.7320508075688772},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"92":{"tf":2.6457513110645907}},"e":{"?":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"473":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"145":{"tf":1.0},"16":{"tf":1.0},"165":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"420":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"24":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"t":{"df":23,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.7320508075688772}}},"t":{"df":2,"docs":{"196":{"tf":1.0},"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"422":{"tf":1.0},"473":{"tf":1.0}}}},"r":{"df":5,"docs":{"285":{"tf":2.23606797749979},"359":{"tf":1.0},"47":{"tf":2.0},"52":{"tf":1.7320508075688772},"71":{"tf":2.0}},"e":{"df":318,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":2.23606797749979},"448":{"tf":13.96424004376894},"449":{"tf":25.709920264364882},"45":{"tf":1.0},"450":{"tf":87.46999485537883},"451":{"tf":4.0},"452":{"tf":6.708203932499369},"453":{"tf":14.832396974191326},"456":{"tf":4.123105625617661},"457":{"tf":4.123105625617661},"458":{"tf":5.5677643628300215},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"0":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"302":{"tf":1.0},"351":{"tf":1.0},"409":{"tf":1.0},"460":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"281":{"tf":1.0},"463":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"200":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"158":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0},"374":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{":":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"113":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"371":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"276":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"129":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"462":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"507":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"2":{"/":{"0":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":12,"docs":{"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"r":{"df":10,"docs":{"131":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"32":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"471":{"tf":1.7320508075688772},"476":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"147":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":65,"docs":{"10":{"tf":1.0},"11":{"tf":2.23606797749979},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.0},"490":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"369":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"299":{"tf":1.4142135623730951},"300":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"444":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":2.0}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":10,"docs":{"447":{"tf":1.7320508075688772},"448":{"tf":12.409673645990857},"449":{"tf":22.427661492005804},"450":{"tf":76.95453203028396},"451":{"tf":3.605551275463989},"452":{"tf":6.164414002968976},"453":{"tf":12.922847983320086},"456":{"tf":3.7416573867739413},"457":{"tf":3.7416573867739413},"458":{"tf":5.0990195135927845}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":15,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"196":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"466":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"261":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"49":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"377":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":42,"docs":{"0":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.7320508075688772},"261":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"373":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"444":{"tf":2.0},"491":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":1,"docs":{"424":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":2.449489742783178},"287":{"tf":1.0},"351":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":1.0},"419":{"tf":1.0},"73":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"b":{"2":{"1":{"4":{"8":{"a":{"5":{"1":{"df":0,"docs":{},"e":{"d":{"6":{"4":{"5":{"3":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"1":{"7":{"9":{"7":{"8":{"a":{"5":{"2":{"7":{"df":0,"docs":{},"f":{"d":{"2":{"d":{"2":{"5":{"8":{"4":{"d":{"a":{"1":{"df":0,"docs":{},"e":{"3":{"4":{"4":{"a":{"3":{"5":{"a":{"d":{"1":{"2":{"b":{"df":0,"docs":{},"f":{"5":{"4":{"6":{"0":{"a":{"7":{"df":0,"docs":{},"e":{"2":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"7":{"df":0,"docs":{},"f":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"0":{"df":0,"docs":{},"e":{"4":{"0":{"8":{"7":{"5":{"1":{"3":{"1":{"9":{"c":{"3":{"b":{"d":{"b":{"8":{"4":{"df":0,"docs":{},"e":{"9":{"5":{"df":0,"docs":{},"f":{"d":{"0":{"d":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"b":{"8":{"1":{"1":{"0":{"7":{"a":{"2":{"5":{"6":{"1":{"df":0,"docs":{},"e":{"6":{"9":{"1":{"c":{"3":{"3":{"c":{"1":{"a":{"df":0,"docs":{},"e":{"6":{"3":{"5":{"c":{"2":{"c":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"0":{"4":{"0":{"c":{"a":{"5":{"7":{"df":0,"docs":{},"e":{"5":{"1":{"3":{"a":{"3":{"6":{"df":0,"docs":{},"e":{"c":{"d":{"3":{"b":{"b":{"5":{"4":{"2":{"0":{"7":{"d":{"df":0,"docs":{},"f":{"c":{"d":{"1":{"0":{"6":{"8":{"2":{"2":{"0":{"0":{"9":{"2":{"9":{"c":{"a":{"d":{"6":{"a":{"d":{"a":{"4":{"6":{"b":{"5":{"2":{"1":{"4":{"1":{"7":{"9":{"6":{"4":{"1":{"7":{"4":{"df":3,"docs":{"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"344":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"229":{"tf":1.0}}}}}}}},"df":1,"docs":{"14":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"391":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"273":{"tf":1.4142135623730951},"292":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"24":{"tf":1.7320508075688772},"284":{"tf":1.0},"420":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":2.449489742783178},"431":{"tf":2.0},"432":{"tf":2.449489742783178},"433":{"tf":2.449489742783178},"434":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":2.6457513110645907},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"244":{"tf":1.0},"409":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":86,"docs":{"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":3.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.7320508075688772},"338":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":3.4641016151377544},"377":{"tf":3.3166247903554},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":2.6457513110645907},"401":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"421":{"tf":2.23606797749979},"422":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"434":{"tf":2.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"424":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}}}},"df":16,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"281":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"460":{"tf":1.0},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"376":{"tf":2.8284271247461903},"377":{"tf":2.8284271247461903}}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"424":{"tf":1.0}}}},"b":{"df":7,"docs":{"346":{"tf":2.449489742783178},"421":{"tf":1.0},"422":{"tf":2.0},"431":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"346":{"tf":2.23606797749979},"420":{"tf":2.449489742783178},"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"219":{"tf":1.0}},"z":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":2,"docs":{"267":{"tf":1.0},"299":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":33,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"351":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":2,"docs":{"145":{"tf":1.0},"185":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"466":{"tf":1.0}}}}},"d":{"df":8,"docs":{"209":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"394":{"tf":1.0},"444":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"216":{"tf":1.7320508075688772},"285":{"tf":1.0},"499":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"152":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"225":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"499":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0}}},"p":{"df":1,"docs":{"191":{"tf":1.0}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":36,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"130":{"tf":2.8284271247461903},"166":{"tf":1.4142135623730951},"174":{"tf":3.7416573867739413},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"267":{"tf":1.7320508075688772},"284":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":2.449489742783178},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"363":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":2.0},"73":{"tf":3.1622776601683795},"75":{"tf":1.7320508075688772},"77":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"14":{"tf":1.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.0},"299":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":3.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"222":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"267":{"tf":2.0},"268":{"tf":1.0},"299":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":27,"docs":{"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":2.23606797749979},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"174":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":3.1622776601683795},"208":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":2.8284271247461903},"384":{"tf":1.0},"386":{"tf":2.8284271247461903},"424":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":2.6457513110645907}}},"t":{"df":1,"docs":{"119":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}},"v":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"491":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"15":{"tf":1.0}}}}}},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"362":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.0},"472":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"283":{"tf":2.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"129":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"102":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"463":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"232":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.4142135623730951},"24":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":14,"docs":{"216":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"432":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"228":{"tf":1.0},"285":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":1,"docs":{"219":{"tf":2.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":30,"docs":{"108":{"tf":1.0},"124":{"tf":1.7320508075688772},"173":{"tf":1.0},"191":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.4142135623730951},"421":{"tf":1.0},"434":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"286":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"355":{"tf":1.4142135623730951},"490":{"tf":1.0},"502":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"173":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"h":{"df":1,"docs":{"102":{"tf":1.0}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"225":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"423":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"120":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"177":{"tf":1.0},"191":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"b":{"2":{"5":{"6":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"141":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"401":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"285":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"497":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"21":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"21":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}},"t":{"df":1,"docs":{"444":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"215":{"tf":1.0},"459":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}},"k":{"df":1,"docs":{"69":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"230":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":2.23606797749979},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"174":{"tf":2.0},"185":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"373":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}},"s":{"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"73":{"tf":1.0}}},"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"191":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"473":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"158":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":2.0},"396":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.7320508075688772},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"475":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":13,"docs":{"11":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"242":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.0},"84":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"285":{"tf":1.0},"376":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"191":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"351":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":16,"docs":{"191":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"509":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"471":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"213":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"237":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"37":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"45":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"178":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"473":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":3,"docs":{"11":{"tf":1.0},"174":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"196":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"225":{"tf":1.0},"461":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"402":{"tf":1.0}}}},"p":{"df":9,"docs":{"191":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"394":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"228":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"5":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"208":{"tf":1.0},"280":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"505":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"230":{"tf":1.0},"284":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":17,"docs":{"106":{"tf":1.0},"141":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.7320508075688772},"19":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0}}}},"2":{"df":3,"docs":{"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}}},"4":{"df":0,"docs":{},"f":{"d":{"a":{"5":{"a":{"6":{"7":{"4":{"df":0,"docs":{},"f":{"0":{"8":{"3":{"8":{"b":{"6":{"4":{"c":{"a":{"c":{"df":0,"docs":{},"f":{"6":{"d":{"2":{"2":{"b":{"b":{"a":{"df":0,"docs":{},"e":{"3":{"8":{"5":{"9":{"4":{"d":{"7":{"9":{"0":{"3":{"a":{"b":{"a":{"2":{"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":2,"docs":{"242":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"c":{"df":0,"docs":{},"f":{"7":{"b":{"2":{"9":{"0":{"1":{"9":{"df":0,"docs":{},"e":{"3":{"0":{"d":{"0":{"1":{"a":{"6":{"5":{"8":{"a":{"b":{"d":{"3":{"2":{"4":{"0":{"3":{"d":{"b":{"8":{"5":{"2":{"6":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"9":{"0":{"7":{"8":{"1":{"9":{"9":{"4":{"9":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"8":{"3":{"0":{"df":0,"docs":{},"e":{"5":{"d":{"9":{"6":{"4":{"7":{"a":{"df":0,"docs":{},"f":{"8":{"9":{"a":{"5":{"df":0,"docs":{},"e":{"9":{"a":{"4":{"d":{"4":{"0":{"8":{"9":{"df":0,"docs":{},"e":{"6":{"df":0,"docs":{},"e":{"8":{"5":{"5":{"8":{"9":{"1":{"a":{"5":{"3":{"3":{"3":{"1":{"6":{"a":{"d":{"df":0,"docs":{},"f":{"4":{"a":{"4":{"2":{"b":{"7":{"b":{"df":0,"docs":{},"f":{"1":{"3":{"7":{"2":{"3":{"8":{"9":{"b":{"7":{"4":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":46,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":2.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":2.0},"278":{"tf":1.4142135623730951},"299":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.0},"417":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"351":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"df":1,"docs":{"439":{"tf":1.0}}}},"s":{"df":1,"docs":{"284":{"tf":1.0}},"i":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"421":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"17":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"147":{"tf":1.0},"178":{"tf":1.0},"216":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"72":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"497":{"tf":1.0}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"0":{"0":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"l":{"8":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"s":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"6":{"df":0,"docs":{},"q":{"c":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"0":{"6":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"5":{"4":{"9":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"y":{"2":{"c":{"df":0,"docs":{},"k":{"2":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"0":{"3":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"z":{"5":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"0":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"0":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"0":{"6":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"8":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"9":{"3":{"2":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"5":{"c":{"a":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"9":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"3":{"0":{"df":0,"docs":{},"z":{"7":{"0":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"6":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"v":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"d":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"6":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"0":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"4":{"d":{"0":{"5":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"8":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"3":{"7":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"9":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"8":{"df":0,"docs":{},"m":{"6":{"9":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"2":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"4":{"9":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"0":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"2":{"4":{"2":{"6":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"z":{"7":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"u":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"c":{"c":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"4":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"q":{"9":{"2":{"5":{"7":{"9":{"df":0,"docs":{},"n":{"3":{"c":{"4":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"9":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"8":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"c":{"2":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"9":{"8":{"6":{"df":0,"docs":{},"t":{"5":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"f":{"2":{"5":{"8":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"8":{"9":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"n":{"3":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"4":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"5":{"3":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"0":{"9":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"4":{"7":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"5":{"2":{"5":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"7":{"df":0,"docs":{},"x":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"h":{"6":{"2":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"6":{"a":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"3":{"6":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"y":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"4":{"d":{"6":{"4":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"j":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"c":{"3":{"2":{"df":0,"docs":{},"g":{"0":{"df":0,"docs":{},"u":{"d":{"8":{"8":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"k":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"0":{"c":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"2":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"r":{"a":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"9":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"2":{"5":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"9":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"6":{"df":0,"docs":{},"h":{"5":{"5":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"p":{"a":{"6":{"7":{"d":{"df":0,"docs":{},"m":{"2":{"5":{"5":{"d":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"6":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"6":{"8":{"5":{"7":{"df":0,"docs":{},"x":{"3":{"0":{"2":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"4":{"7":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"7":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"r":{"a":{"3":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"p":{"9":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"c":{"5":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"q":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"h":{"2":{"c":{"3":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"6":{"7":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"5":{"9":{"c":{"df":0,"docs":{},"q":{"7":{"df":0,"docs":{},"t":{"8":{"0":{"6":{"df":0,"docs":{},"n":{"c":{"9":{"df":0,"docs":{},"y":{"2":{"df":0,"docs":{},"g":{"6":{"4":{"df":0,"docs":{},"w":{"a":{"6":{"0":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"m":{"6":{"df":0,"docs":{},"e":{"9":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"k":{"5":{"d":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"8":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"1":{"c":{"df":0,"docs":{},"v":{"a":{"c":{"4":{"8":{"d":{"d":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"9":{"df":0,"docs":{},"n":{"a":{"9":{"4":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"2":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"7":{"4":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"j":{"8":{"a":{"9":{"9":{"df":0,"docs":{},"q":{"3":{"3":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"6":{"a":{"df":0,"docs":{},"r":{"9":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"0":{"6":{"df":0,"docs":{},"k":{"0":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"183":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"w":{"2":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"w":{"2":{"6":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"6":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"3":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"3":{"2":{"df":2,"docs":{"102":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"102":{"tf":2.449489742783178},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"1":{"3":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"d":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"4":{"2":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"0":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"9":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"y":{"8":{"a":{"6":{"d":{"df":0,"docs":{},"k":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"3":{"c":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"8":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"2":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"8":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"k":{"3":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"d":{"c":{"d":{"c":{"df":0,"docs":{},"n":{"2":{"3":{"df":0,"docs":{},"k":{"6":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"0":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"8":{"8":{"a":{"d":{"7":{"a":{"4":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"3":{"6":{"3":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"8":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"7":{"df":0,"docs":{},"j":{"3":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"y":{"5":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"6":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"9":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"u":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"267":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"476":{"tf":1.7320508075688772},"500":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"35":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"28":{"tf":1.0},"300":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"g":{"df":3,"docs":{"191":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"227":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"185":{"tf":1.0},"383":{"tf":1.0},"475":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"469":{"tf":1.7320508075688772},"490":{"tf":1.0},"498":{"tf":1.0}}}}},"b":{"df":3,"docs":{"174":{"tf":1.0},"209":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"425":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"129":{"tf":1.0},"148":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"285":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"360":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"d":{"df":32,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":2.0},"171":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"285":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"373":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.0}}}}}}},"d":{"df":14,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.4142135623730951},"351":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"398":{"tf":1.0},"399":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":20,"docs":{"267":{"tf":2.0},"321":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"332":{"tf":1.4142135623730951},"333":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"363":{"tf":1.0},"391":{"tf":2.6457513110645907},"392":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":7,"docs":{"24":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"485":{"tf":1.0},"491":{"tf":3.0},"508":{"tf":2.0},"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"444":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"174":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"397":{"tf":1.0},"420":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"176":{"tf":1.4142135623730951},"24":{"tf":1.0},"285":{"tf":2.0},"371":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"242":{"tf":2.6457513110645907},"470":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"v":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"388":{"tf":1.0},"401":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"216":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":2.449489742783178},"394":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":2.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"498":{"tf":1.0},"62":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"df":1,"docs":{"126":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"=":{"0":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},">":{".":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"107":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"122":{"tf":3.1622776601683795},"125":{"tf":3.605551275463989},"126":{"tf":2.449489742783178},"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":3.7416573867739413},"175":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"280":{"tf":2.8284271247461903},"281":{"tf":1.0},"282":{"tf":2.0},"373":{"tf":2.0},"374":{"tf":1.0},"439":{"tf":1.0},"7":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":3.605551275463989}},"r":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"463":{"tf":1.0},"472":{"tf":1.0}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"211":{"tf":1.0},"31":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"r":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}},"z":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":13,"docs":{"219":{"tf":1.0},"237":{"tf":1.0},"285":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":3.605551275463989},"476":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}},"p":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"225":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"286":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":19,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"413":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"487":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"497":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"12":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"152":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"t":{"df":15,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"228":{"tf":1.0},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"500":{"tf":1.0},"8":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":1.0},"219":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"231":{"tf":1.0},"430":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"15":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":90,"docs":{"122":{"tf":1.0},"131":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":2.449489742783178},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":3.3166247903554},"261":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"376":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":2.23606797749979},"509":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"\\":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"174":{"tf":1.0},"196":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"152":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"424":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"323":{"tf":2.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"360":{"tf":1.0},"444":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"420":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"400":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"174":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"430":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.7320508075688772},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"466":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"420":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"191":{"tf":1.0},"31":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"n":{"df":2,"docs":{"383":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"462":{"tf":1.4142135623730951},"498":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"463":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"236":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"29":{"tf":1.0},"301":{"tf":1.4142135623730951},"37":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"50":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"s":{"df":12,"docs":{"323":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"424":{"tf":1.0},"474":{"tf":1.0},"80":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"497":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"393":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"242":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"285":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"386":{"tf":1.4142135623730951},"397":{"tf":1.0},"504":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"102":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"466":{"tf":1.0}}}},"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"285":{"tf":1.4142135623730951},"465":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"5":{"2":{"8":{"5":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"b":{"5":{"8":{"8":{"5":{"a":{"1":{"4":{"2":{"0":{"8":{"0":{"0":{"d":{"df":0,"docs":{},"e":{"1":{"4":{"b":{"0":{"d":{"1":{"9":{"6":{"0":{"d":{"b":{"1":{"a":{"9":{"9":{"0":{"a":{"6":{"c":{"2":{"df":0,"docs":{},"f":{"7":{"b":{"5":{"1":{"7":{"1":{"2":{"5":{"b":{"df":0,"docs":{},"e":{"d":{"c":{"0":{"0":{"0":{"d":{"b":{"df":2,"docs":{"127":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"462":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"237":{"tf":1.0},"73":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"df":2,"docs":{"355":{"tf":1.0},"499":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"501":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":10,"docs":{"300":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"374":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":2.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":1,"docs":{"287":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"507":{"tf":1.0}}},"r":{"df":2,"docs":{"468":{"tf":1.0},"74":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"393":{"tf":2.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"480":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"490":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"178":{"tf":1.0},"23":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"143":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"145":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"107":{"tf":1.0},"115":{"tf":3.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":4.58257569495584},"139":{"tf":3.1622776601683795},"14":{"tf":1.4142135623730951},"156":{"tf":1.0},"158":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":3.3166247903554},"175":{"tf":1.4142135623730951},"242":{"tf":1.0},"280":{"tf":1.0},"374":{"tf":1.4142135623730951},"92":{"tf":3.872983346207417}},"l":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"487":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"2":{"5":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"219":{"tf":1.7320508075688772},"242":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":5,"docs":{"131":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"386":{"tf":1.4142135623730951},"434":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"174":{"tf":3.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"191":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"242":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"294":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":2.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"476":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"189":{"tf":1.0},"299":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"208":{"tf":1.0},"268":{"tf":1.0},"303":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":12,"docs":{"109":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"287":{"tf":1.0},"371":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"24":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"402":{"tf":1.0},"476":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"444":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"df":24,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"245":{"tf":1.0},"280":{"tf":1.7320508075688772},"303":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.4142135623730951},"53":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":1,"docs":{"491":{"tf":1.0}}},"x":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"15":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.23606797749979},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":19,"docs":{"158":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"182":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"51":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":2.0}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"279":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":5,"docs":{"219":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"191":{"tf":1.0},"386":{"tf":1.0}},"s":{"df":3,"docs":{"131":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":29,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":2.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":2.449489742783178},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"412":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":52,"docs":{"11":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"o":{".":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"470":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":16,"docs":{"209":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"379":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"225":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.7320508075688772}}}}}}}},"k":{"df":4,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":3.0},"277":{"tf":1.4142135623730951}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":60,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"183":{"tf":1.0},"191":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":3.0},"377":{"tf":3.0},"434":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":8,"docs":{"110":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"329":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":2,"docs":{"174":{"tf":2.6457513110645907},"92":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"219":{"tf":1.0},"228":{"tf":1.0},"484":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":80,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"355":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"110":{"tf":1.0},"144":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":42,"docs":{"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":3.1622776601683795},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"242":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"22":{"tf":1.0},"475":{"tf":1.0},"497":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"11":{"tf":1.0},"258":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"391":{"tf":1.0},"417":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"299":{"tf":1.0},"374":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":20,"docs":{"152":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0}},"i":{"df":6,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"211":{"tf":1.0},"285":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"129":{"tf":1.0},"218":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":2.0},"467":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}}}}}}},"d":{"7":{"df":1,"docs":{"391":{"tf":1.0}}},"_":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"d":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"\"":{":":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":16,"docs":{"174":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"213":{"tf":1.0},"295":{"tf":1.4142135623730951},"338":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"391":{"tf":2.0},"45":{"tf":1.0}},"s":{"\"":{":":{"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"df":2,"docs":{"371":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"391":{"tf":2.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"373":{"tf":1.4142135623730951},"45":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}}},"b":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"47":{"tf":2.0},"64":{"tf":2.0}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":97,"docs":{"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":2.6457513110645907},"189":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":3.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"476":{"tf":1.0},"5":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"i":{"df":45,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":2.0},"11":{"tf":2.0},"13":{"tf":1.0},"141":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":3.605551275463989},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":1.4142135623730951},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"211":{"tf":1.0},"405":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":4,"docs":{"191":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"391":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":79,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"242":{"tf":1.0},"373":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"n":{"df":40,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"219":{"tf":2.23606797749979},"227":{"tf":1.0},"23":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":2,"docs":{"299":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":2.0},"508":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":1,"docs":{"115":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"242":{"tf":1.0}}}},"o":{"d":{"df":12,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":15,"docs":{"123":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"21":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":2.449489742783178},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"73":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}},"r":{"a":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":9,"docs":{"188":{"tf":1.0},"20":{"tf":1.4142135623730951},"33":{"tf":2.0},"355":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":2,"docs":{"174":{"tf":1.0},"227":{"tf":1.0}}}},"p":{"c":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"0":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"229":{"tf":1.0}}}}},"i":{"d":{"df":144,"docs":{"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"216":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"491":{"tf":1.0},"502":{"tf":1.7320508075688772},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"172":{"tf":1.0}}},"v":{"df":2,"docs":{"174":{"tf":2.0},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"178":{"tf":1.0},"213":{"tf":1.0}},"i":{"df":1,"docs":{"467":{"tf":1.0}}},"l":{"df":15,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"282":{"tf":1.0}}}},"i":{"df":1,"docs":{"484":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0}}}}},"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"459":{"tf":1.0},"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":26,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":2.6457513110645907},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"219":{"tf":4.47213595499958},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"208":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"90":{"tf":1.0}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"44":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"450":{"tf":4.47213595499958},"452":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":36,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"44":{"tf":1.0},"53":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"425":{"tf":1.0},"475":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":14,"docs":{"10":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"219":{"tf":3.7416573867739413},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":2.0},"346":{"tf":1.0},"365":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"31":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":2,"docs":{"458":{"tf":1.7320508075688772},"497":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"470":{"tf":1.0}}},"r":{"df":3,"docs":{"219":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"420":{"tf":1.0},"466":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"295":{"tf":2.23606797749979},"299":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"317":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.23606797749979},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.23606797749979},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"44":{"tf":2.0},"473":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"237":{"tf":1.4142135623730951},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":28,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"232":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":2.0},"260":{"tf":1.0},"271":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":4.47213595499958}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.7320508075688772},"171":{"tf":1.0},"196":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"69":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"432":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"213":{"tf":2.449489742783178},"444":{"tf":1.0}},"i":{"df":6,"docs":{"125":{"tf":2.0},"126":{"tf":2.449489742783178},"208":{"tf":1.0},"213":{"tf":1.7320508075688772},"242":{"tf":1.0},"295":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"k":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"14":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"/":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"231":{"tf":1.0}},"e":{"df":1,"docs":{"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"106":{"tf":1.4142135623730951},"143":{"tf":1.0},"346":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"351":{"tf":1.0},"373":{"tf":1.0},"420":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{")":{":":{"/":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{">":{":":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"2":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772}}}}}}},"2":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"2":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"355":{"tf":1.0},"71":{"tf":1.0}}},"1":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"0":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{":":{"3":{"0":{"3":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"404":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"404":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"/":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"285":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":14,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"380":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"s":{":":{"/":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"338":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"b":{"0":{"b":{"7":{"b":{"7":{"7":{"4":{"df":1,"docs":{"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"{":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"i":{".":{"df":9,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"279":{"tf":1.0},"461":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"295":{"tf":1.0}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":17,"docs":{"288":{"tf":2.0},"289":{"tf":2.23606797749979},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.8284271247461903},"293":{"tf":1.7320508075688772},"294":{"tf":2.0},"295":{"tf":2.0},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"450":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":54,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.8284271247461903},"114":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.7320508075688772},"189":{"tf":1.0},"209":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"242":{"tf":2.0},"292":{"tf":1.0},"321":{"tf":2.0},"332":{"tf":2.0},"334":{"tf":1.7320508075688772},"344":{"tf":2.0},"374":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":2.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":3.1622776601683795},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}},"e":{"a":{"df":4,"docs":{"219":{"tf":1.0},"285":{"tf":1.0},"388":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":2,"docs":{"430":{"tf":1.0},"472":{"tf":1.0}}},"s":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"497":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":18,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"196":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"279":{"tf":1.0},"45":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"491":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"285":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"378":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"420":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"498":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.219544457292887},"450":{"tf":31.400636936215164},"451":{"tf":1.7320508075688772},"452":{"tf":2.8284271247461903},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"287":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"227":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"df":15,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"259":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"490":{"tf":1.0},"74":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"172":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.4142135623730951},"397":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"335":{"tf":1.0},"421":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"498":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"227":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"501":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"110":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.7320508075688772},"23":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"497":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"68":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"141":{"tf":1.0},"208":{"tf":1.0},"281":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}},"u":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"73":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"219":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{"df":12,"docs":{"108":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"209":{"tf":1.4142135623730951},"420":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772}}}},"i":{"c":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.7320508075688772},"471":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":8,"docs":{"12":{"tf":1.0},"191":{"tf":1.4142135623730951},"285":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"31":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"139":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":48,"docs":{"106":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":2.23606797749979},"498":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"208":{"tf":1.0},"475":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"174":{"tf":1.0},"183":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"188":{"tf":1.0}},"s":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"1":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"174":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"115":{"tf":1.0},"174":{"tf":3.605551275463989},"176":{"tf":2.23606797749979},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"92":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"475":{"tf":1.0}}}}},"o":{"df":1,"docs":{"242":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"141":{"tf":2.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"351":{"tf":1.0},"374":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"490":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"473":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":22,"docs":{"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"247":{"tf":1.0},"260":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"336":{"tf":1.0},"343":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.7320508075688772},"391":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0}}},"n":{"c":{"df":5,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"393":{"tf":1.0},"420":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":2,"docs":{"228":{"tf":1.0},"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":17,"docs":{"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"73":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"149":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"43":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"462":{"tf":1.4142135623730951},"92":{"tf":1.0}},"r":{"df":33,"docs":{"196":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"287":{"tf":1.0},"302":{"tf":2.449489742783178},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"417":{"tf":1.0},"424":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":3.1622776601683795}}}},"n":{"d":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":26,"docs":{"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"470":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"53":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}}}}},"df":15,"docs":{"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"47":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0}}}}},"f":{"a":{"c":{"df":20,"docs":{"213":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"335":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":1.0},"419":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":16,"docs":{"196":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":2.449489742783178},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"346":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"420":{"tf":1.0},"490":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"285":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"o":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"230":{"tf":1.0},"283":{"tf":1.0}},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"2":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":11,"docs":{"219":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"490":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"497":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"211":{"tf":1.0},"217":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":2,"docs":{"4":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"4":{"/":{"1":{"0":{"4":{".":{"2":{"4":{".":{"2":{"8":{".":{"1":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"8":{"2":{"9":{"9":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"1":{"0":{"0":{"0":{"5":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"9":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"0":{"6":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"2":{"3":{"0":{".":{"1":{"3":{"7":{".":{"7":{"2":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{".":{"1":{"9":{"1":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{".":{"8":{"7":{".":{"1":{"3":{"4":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"8":{"4":{".":{"1":{"8":{"1":{".":{"3":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{".":{"1":{"6":{"8":{".":{"2":{"2":{"0":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"6":{"9":{".":{"1":{"6":{"2":{".":{"1":{"5":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"2":{"4":{".":{"1":{"3":{"2":{".":{"1":{"2":{"3":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"3":{"0":{"0":{"0":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"224":{"tf":1.0},"229":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}},"v":{"6":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"490":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"152":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.7320508075688772},"487":{"tf":2.23606797749979},"490":{"tf":4.123105625617661},"491":{"tf":1.7320508075688772},"499":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"107":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"284":{"tf":2.0},"285":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.0},"472":{"tf":1.0},"71":{"tf":1.0}}},"r":{"df":2,"docs":{"191":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":6,"docs":{"211":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"420":{"tf":1.4142135623730951},"434":{"tf":1.0},"72":{"tf":1.0}}}}}},"’":{"df":24,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.4142135623730951},"29":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":107,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":2.449489742783178},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":3.4641016151377544},"150":{"tf":1.0},"151":{"tf":3.7416573867739413},"152":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":2.0},"188":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.7320508075688772},"303":{"tf":1.0},"323":{"tf":2.6457513110645907},"334":{"tf":2.0},"346":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"453":{"tf":2.449489742783178},"48":{"tf":2.0},"72":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"179":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}},"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"318":{"tf":1.0},"321":{"tf":2.6457513110645907},"322":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"344":{"tf":2.6457513110645907},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"263":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"256":{"tf":1.0},"257":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":97,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"448":{"tf":5.656854249492381},"449":{"tf":10.14889156509222},"450":{"tf":34.55430508634199},"451":{"tf":2.23606797749979},"452":{"tf":2.0},"453":{"tf":5.744562646538029},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"’":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"300":{"tf":1.0},"448":{"tf":2.6457513110645907},"449":{"tf":4.58257569495584},"450":{"tf":15.524174696260024},"453":{"tf":2.6457513110645907}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"152":{"tf":1.0}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"458":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"285":{"tf":1.4142135623730951},"391":{"tf":1.0},"404":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"|":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":29,"docs":{"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"458":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"75":{"tf":1.0}},"’":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"188":{"tf":1.7320508075688772},"281":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":4,"docs":{"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0}}}}},"df":11,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":2.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"231":{"tf":1.4142135623730951},"242":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":1.0}}},"p":{"df":15,"docs":{"20":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":2.23606797749979},"241":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"211":{"tf":1.0},"242":{"tf":1.0},"431":{"tf":1.0}}}},"s":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"\"":{":":{"\"":{"3":{"1":{"8":{"9":{"4":{"7":{"a":{"9":{"1":{"d":{"1":{"0":{"9":{"d":{"a":{"7":{"1":{"0":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"4":{"6":{"2":{"5":{"c":{"0":{"c":{"c":{"4":{"df":0,"docs":{},"e":{"8":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"1":{"6":{"3":{"6":{"df":0,"docs":{},"e":{"d":{"1":{"9":{"4":{"0":{"8":{"df":0,"docs":{},"e":{"4":{"3":{"a":{"1":{"d":{"a":{"b":{"df":0,"docs":{},"e":{"d":{"4":{"0":{"9":{"0":{"a":{"3":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"7":{"0":{"9":{"8":{"d":{"1":{"4":{"df":0,"docs":{},"e":{"8":{"0":{"c":{"6":{"2":{"c":{"0":{"7":{"1":{"a":{"1":{"d":{"8":{"2":{"df":0,"docs":{},"e":{"3":{"d":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"b":{"9":{"a":{"6":{"c":{"d":{"3":{"3":{"9":{"a":{"5":{"df":0,"docs":{},"f":{"6":{"6":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"e":{"c":{"3":{"3":{"8":{"2":{"7":{"4":{"df":0,"docs":{},"f":{"d":{"c":{"d":{"9":{"d":{"0":{"df":0,"docs":{},"f":{"4":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"141":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"286":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":66,"docs":{"102":{"tf":2.8284271247461903},"103":{"tf":2.449489742783178},"104":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":4.242640687119285},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"187":{"tf":2.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":1.0},"360":{"tf":1.7320508075688772},"371":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"424":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.8284271247461903},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"130":{"tf":1.7320508075688772},"139":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"11":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"191":{"tf":1.7320508075688772},"208":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"277":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":18,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"227":{"tf":2.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"284":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"219":{"tf":1.0},"227":{"tf":1.0},"420":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}},"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}},"x":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"107":{"tf":2.23606797749979},"110":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":2.0},"23":{"tf":1.7320508075688772},"373":{"tf":1.4142135623730951},"444":{"tf":1.0},"73":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"23":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"152":{"tf":1.0},"174":{"tf":1.0},"31":{"tf":1.0},"424":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"278":{"tf":1.0},"286":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"y":{"df":1,"docs":{"174":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"185":{"tf":1.0},"20":{"tf":2.6457513110645907},"21":{"tf":1.0},"225":{"tf":1.7320508075688772},"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"473":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"3":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"1":{"df":2,"docs":{"174":{"tf":1.0},"242":{"tf":1.0}}},"2":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":2.23606797749979},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"262":{"tf":1.7320508075688772},"278":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"68":{"tf":1.0},"92":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":10,"docs":{"12":{"tf":2.0},"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"285":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.23606797749979}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"473":{"tf":1.0},"498":{"tf":1.0}}}},"v":{"df":8,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}},"df":288,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.449489742783178},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"x":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":8,"docs":{"160":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"225":{"tf":1.0},"286":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"73":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":21,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.6457513110645907},"236":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":9.16515138991168},"449":{"tf":16.673332000533065},"450":{"tf":57.3410847473258},"451":{"tf":2.8284271247461903},"452":{"tf":5.0990195135927845},"453":{"tf":9.591663046625438},"456":{"tf":2.8284271247461903},"457":{"tf":2.8284271247461903},"458":{"tf":4.0},"461":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"424":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"225":{"tf":1.0},"370":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0}},"’":{"df":4,"docs":{"131":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"72":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"\"":{":":{"1":{"0":{"0":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":22,"docs":{"183":{"tf":1.0},"191":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"26":{"tf":1.0},"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"432":{"tf":1.4142135623730951},"47":{"tf":1.0},"497":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"462":{"tf":1.0},"476":{"tf":1.0}}}},"df":10,"docs":{"219":{"tf":1.0},"448":{"tf":4.58257569495584},"449":{"tf":6.48074069840786},"450":{"tf":24.939927826679853},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":1.0}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"388":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"191":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"115":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":20,"docs":{"102":{"tf":1.0},"113":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"473":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"k":{"df":10,"docs":{"11":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.7320508075688772},"279":{"tf":1.0},"281":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":2.0}}},"u":{"df":0,"docs":{},"x":{"df":4,"docs":{"47":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":41,"docs":{"11":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"191":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":3.4641016151377544},"243":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"285":{"tf":2.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"465":{"tf":1.0}}}}}},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"299":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"232":{"tf":1.4142135623730951},"249":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":3.0},"268":{"tf":2.449489742783178},"269":{"tf":2.0},"287":{"tf":1.0},"296":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":4.123105625617661},"300":{"tf":1.7320508075688772},"301":{"tf":2.23606797749979},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"413":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.4142135623730951},"365":{"tf":1.0},"394":{"tf":1.0},"420":{"tf":1.0},"425":{"tf":1.0},"47":{"tf":1.0},"484":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"72":{"tf":1.0}}}}}}},"t":{"df":7,"docs":{"261":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.7320508075688772},"391":{"tf":4.242640687119285},"434":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"424":{"tf":1.4142135623730951}}}}}}}},"df":26,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"120":{"tf":2.0},"144":{"tf":1.4142135623730951},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":2.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"285":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"391":{"tf":1.4142135623730951},"422":{"tf":1.0},"47":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":2.23606797749979}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"236":{"tf":1.0},"285":{"tf":1.4142135623730951},"419":{"tf":1.0}}}}},"i":{"c":{"df":5,"docs":{"196":{"tf":1.0},"432":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"285":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"{":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"232":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":5.291502622129181},"453":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"374":{"tf":1.0},"466":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"281":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"219":{"tf":1.0},"286":{"tf":1.0}}},"s":{"df":2,"docs":{"236":{"tf":1.0},"237":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}},"t":{"df":2,"docs":{"466":{"tf":1.0},"484":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"131":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"300":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"219":{"tf":1.0}}}}},"o":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"461":{"tf":1.0},"473":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"35":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{":":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":29,"docs":{"178":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"476":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"323":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"386":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"225":{"tf":1.0},"227":{"tf":1.0},"279":{"tf":2.0},"47":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":30,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":2.0},"149":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"391":{"tf":2.8284271247461903},"424":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.7320508075688772},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"167":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"398":{"tf":1.0},"430":{"tf":1.0},"490":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"208":{"tf":1.0},"242":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"230":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"174":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"491":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"379":{"tf":1.0},"82":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"215":{"tf":1.0},"268":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"490":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"508":{"tf":2.0},"509":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"463":{"tf":1.0},"476":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"26":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"242":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"174":{"tf":2.0},"242":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"462":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":19,"docs":{"113":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"355":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"y":{"b":{"df":2,"docs":{"153":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":21,"docs":{"120":{"tf":1.7320508075688772},"144":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":6,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"242":{"tf":1.0},"469":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"267":{"tf":1.4142135623730951},"30":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"484":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"152":{"tf":1.0}}}}},"df":8,"docs":{"127":{"tf":2.0},"147":{"tf":2.6457513110645907},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"174":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0},"497":{"tf":1.0}},"’":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"241":{"tf":1.0},"242":{"tf":1.0},"388":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"472":{"tf":1.0},"484":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"152":{"tf":1.7320508075688772},"191":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"491":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":35,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"18":{"tf":2.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"47":{"tf":2.0},"485":{"tf":1.0},"495":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"15":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"225":{"tf":1.0},"285":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"420":{"tf":1.0}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"4":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"431":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.0}}},"df":4,"docs":{"174":{"tf":1.0},"351":{"tf":1.0},"401":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"188":{"tf":1.0},"284":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"444":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.0}}},"o":{"df":1,"docs":{"191":{"tf":1.0}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}},"x":{"df":1,"docs":{"462":{"tf":1.0}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"232":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"453":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"t":{"/":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":18,"docs":{"211":{"tf":1.0},"287":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":2.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"392":{"tf":1.4142135623730951},"393":{"tf":2.6457513110645907},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}}}},"d":{"df":0,"docs":{},"e":{"df":24,"docs":{"13":{"tf":1.4142135623730951},"180":{"tf":1.0},"242":{"tf":2.23606797749979},"267":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.7320508075688772},"31":{"tf":1.0},"351":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":2.0},"399":{"tf":2.449489742783178},"400":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"425":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":1,"docs":{"499":{"tf":1.0}},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"130":{"tf":1.0},"210":{"tf":1.0}},"i":{"df":2,"docs":{"283":{"tf":1.0},"400":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"21":{"tf":1.4142135623730951},"225":{"tf":2.0},"229":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":1.0},"279":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"420":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"32":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"0":{"df":2,"docs":{"268":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"210":{"tf":1.0},"281":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"391":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":52,"docs":{"131":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"38":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"211":{"tf":1.0},"237":{"tf":1.7320508075688772},"37":{"tf":1.0},"375":{"tf":1.0},"81":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"225":{"tf":1.0},"24":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"’":{"df":2,"docs":{"507":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"130":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"299":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":1.0},"64":{"tf":1.0},"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"22":{"tf":1.0}}}},"i":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"t":{"df":6,"docs":{"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"300":{"tf":1.0},"329":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.7320508075688772}}}}}}}}}},"n":{".":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":2.23606797749979}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"370":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"141":{"tf":1.0},"191":{"tf":1.0},"242":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":2.0},"59":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}}},"t":{"df":2,"docs":{"219":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"503":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":8,"docs":{"179":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"299":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"283":{"tf":1.0},"345":{"tf":1.0},"421":{"tf":1.0},"489":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":1,"docs":{"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":80,"docs":{"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":3.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"303":{"tf":1.0},"305":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"404":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"425":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"444":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"467":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"475":{"tf":1.0},"487":{"tf":1.7320508075688772},"490":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"420":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":88,"docs":{"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"123":{"tf":2.0},"141":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"394":{"tf":1.0},"405":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"450":{"tf":3.1622776601683795},"451":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"444":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"75":{"tf":1.0}}}}},"w":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":63,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"189":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"401":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.4142135623730951},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"436":{"tf":1.0},"437":{"tf":1.0},"59":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"459":{"tf":1.0},"469":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"171":{"tf":1.0},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.23606797749979},"391":{"tf":1.0},"90":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"460":{"tf":1.4142135623730951}}}},"o":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":3.872983346207417},"11":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":2.23606797749979},"144":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.7320508075688772},"18":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":2.6457513110645907},"205":{"tf":1.4142135623730951},"21":{"tf":2.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"219":{"tf":2.0},"22":{"tf":2.23606797749979},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":3.3166247903554},"224":{"tf":1.4142135623730951},"225":{"tf":3.605551275463989},"227":{"tf":2.23606797749979},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"230":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":1.0},"236":{"tf":2.23606797749979},"237":{"tf":1.7320508075688772},"24":{"tf":4.123105625617661},"241":{"tf":2.23606797749979},"242":{"tf":5.291502622129181},"244":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"299":{"tf":2.449489742783178},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.7320508075688772},"37":{"tf":2.23606797749979},"374":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"409":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"425":{"tf":2.6457513110645907},"448":{"tf":3.872983346207417},"449":{"tf":6.708203932499369},"45":{"tf":3.0},"450":{"tf":23.430749027719962},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.872983346207417},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":3.3166247903554},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":5.385164807134504},"74":{"tf":2.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"’":{"df":1,"docs":{"47":{"tf":1.0}}}},"’":{"df":4,"docs":{"110":{"tf":1.0},"224":{"tf":2.0},"27":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":14,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"262":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":7,"docs":{"285":{"tf":1.4142135623730951},"300":{"tf":1.0},"359":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"468":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"173":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951},"285":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":1.0},"77":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":29,"docs":{"11":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"286":{"tf":2.6457513110645907},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"344":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}},"h":{"df":3,"docs":{"165":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0}}},"i":{"c":{"df":4,"docs":{"147":{"tf":1.0},"188":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}},"i":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"w":{"df":15,"docs":{"139":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"167":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"r":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"434":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":35,"docs":{"107":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":3.1622776601683795},"177":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"242":{"tf":3.605551275463989},"267":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":2.0},"75":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"1":{"df":1,"docs":{"165":{"tf":2.0}}},"2":{"df":1,"docs":{"165":{"tf":2.0}}},"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"476":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"501":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"472":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0}},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"276":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"475":{"tf":1.7320508075688772},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}},"r":{"df":2,"docs":{"208":{"tf":1.0},"26":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"500":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}},"k":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":2,"docs":{"191":{"tf":1.0},"466":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"191":{"tf":1.0},"210":{"tf":2.449489742783178},"213":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"236":{"tf":1.0},"461":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"c":{"df":9,"docs":{"152":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"227":{"tf":1.7320508075688772},"393":{"tf":1.0},"400":{"tf":1.0},"490":{"tf":1.0},"63":{"tf":1.0}}},"df":42,"docs":{"110":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":2.0},"174":{"tf":2.23606797749979},"176":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.4142135623730951},"400":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"92":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":12,"docs":{"20":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":37,"docs":{"115":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"345":{"tf":1.0},"373":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":2.6457513110645907},"475":{"tf":1.0},"508":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"471":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"18":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}}}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":3.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"20":{"tf":1.0},"213":{"tf":1.0},"242":{"tf":6.48074069840786},"243":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"285":{"tf":4.358898943540674},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":3.4641016151377544},"61":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":3.1622776601683795},"77":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":2.449489742783178}},"s":{"\"":{":":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"381":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":55,"docs":{"107":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"227":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}},"s":{"df":1,"docs":{"490":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"434":{"tf":1.4142135623730951},"490":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"174":{"tf":1.0},"186":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":6,"docs":{"11":{"tf":2.0},"214":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"235":{"tf":1.0},"345":{"tf":1.0}}}}},"df":10,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"268":{"tf":1.0},"397":{"tf":1.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":55,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"106":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.872983346207417},"132":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":2.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"210":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"424":{"tf":1.0},"47":{"tf":2.0},"490":{"tf":1.0},"509":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"91":{"tf":2.449489742783178},"92":{"tf":2.23606797749979},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"370":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"174":{"tf":1.0},"498":{"tf":1.0},"92":{"tf":1.0}}}},"df":12,"docs":{"105":{"tf":1.0},"23":{"tf":1.0},"286":{"tf":2.0},"35":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"459":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"462":{"tf":2.0},"490":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"174":{"tf":1.0},"242":{"tf":2.0},"284":{"tf":1.0},"374":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":39,"docs":{"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"419":{"tf":2.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"168":{"tf":1.0},"172":{"tf":1.0}}}},"u":{"b":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":13,"docs":{"107":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"47":{"tf":2.6457513110645907},"59":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"k":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"36":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"179":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"237":{"tf":1.7320508075688772},"462":{"tf":1.7320508075688772},"463":{"tf":2.6457513110645907},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"62":{"tf":1.0}},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"92":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":40,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"189":{"tf":1.0},"219":{"tf":2.0},"23":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":2.0},"365":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.7320508075688772},"397":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"45":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{")":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"219":{"tf":1.0},"261":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.0}},"’":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"278":{"tf":1.0}}},"t":{"df":29,"docs":{"139":{"tf":1.0},"174":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"283":{"tf":1.0},"355":{"tf":1.4142135623730951},"386":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"461":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"34":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"497":{"tf":1.0},"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"278":{"tf":1.0},"355":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"213":{"tf":1.0},"225":{"tf":1.0}},"t":{"df":1,"docs":{"225":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"118":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"404":{"tf":1.0},"51":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"273":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"210":{"tf":1.0},"227":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":41,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"360":{"tf":2.23606797749979},"362":{"tf":1.0},"365":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"406":{"tf":1.0},"450":{"tf":6.244997998398398},"452":{"tf":2.449489742783178},"458":{"tf":2.0},"47":{"tf":2.23606797749979},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"470":{"tf":1.0},"506":{"tf":1.0}}}}}}},"y":{"df":5,"docs":{"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"459":{"tf":1.0},"467":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":4,"docs":{"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":24,"docs":{"18":{"tf":1.0},"19":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.23606797749979},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"225":{"tf":3.1622776601683795},"242":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"37":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"73":{"tf":3.3166247903554},"74":{"tf":1.7320508075688772},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"18":{"tf":1.0}}}}},"m":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"n":{"d":{"df":7,"docs":{"110":{"tf":2.0},"120":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"228":{"tf":1.0},"276":{"tf":2.0},"295":{"tf":2.0},"68":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"191":{"tf":1.0},"214":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}}},"r":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"268":{"tf":1.0},"384":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"115":{"tf":2.8284271247461903},"130":{"tf":2.8284271247461903},"174":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":2.0},"351":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"114":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"253":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"491":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"10":{"tf":1.0},"373":{"tf":1.7320508075688772},"422":{"tf":1.0},"443":{"tf":1.7320508075688772},"47":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"47":{"tf":1.0},"498":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"242":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"69":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"285":{"tf":1.0},"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"424":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"419":{"tf":1.0},"434":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"130":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"275":{"tf":1.0},"294":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"476":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"191":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}},"n":{"\"":{":":{"\"":{"1":{"1":{"1":{"1":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"4":{"df":2,"docs":{"370":{"tf":2.0},"381":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"299":{"tf":2.0},"370":{"tf":2.0},"391":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"422":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0}}}}}}}},"k":{"1":{"df":1,"docs":{"147":{"tf":1.0}},"q":{"7":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"q":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"9":{"0":{"0":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"p":{"3":{"9":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"147":{"tf":1.0}}},"3":{"df":1,"docs":{"147":{"tf":1.0}}},"c":{"df":0,"docs":{},"s":{"8":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":1,"docs":{"72":{"tf":1.0}}},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"425":{"tf":1.0},"470":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"285":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"508":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}},"n":{"df":26,"docs":{"128":{"tf":2.0},"130":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":3.4641016151377544},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"284":{"tf":1.0},"372":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":31,"docs":{"216":{"tf":1.0},"36":{"tf":1.0},"418":{"tf":2.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"225":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"147":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":2.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"\"":{",":{"[":{"1":{",":{"2":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"11":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"131":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.4142135623730951},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"55":{"tf":1.0},"92":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":2.449489742783178},"229":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.0}},"i":{"df":7,"docs":{"19":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.6457513110645907},"242":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"125":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":50,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":3.1622776601683795},"124":{"tf":3.3166247903554},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.6457513110645907},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.7320508075688772},"174":{"tf":3.4641016151377544},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.7416573867739413},"91":{"tf":2.0},"92":{"tf":3.3166247903554}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"’":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"189":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":10,"docs":{"323":{"tf":1.7320508075688772},"334":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"394":{"tf":2.0},"402":{"tf":1.0},"47":{"tf":2.23606797749979},"59":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"174":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"461":{"tf":1.0},"498":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":42,"docs":{"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.4142135623730951},"24":{"tf":2.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":12,"docs":{"109":{"tf":2.0},"118":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"338":{"tf":1.4142135623730951},"391":{"tf":3.7416573867739413},"404":{"tf":1.7320508075688772},"500":{"tf":1.0},"53":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"284":{"tf":1.0},"431":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"391":{"tf":1.0},"402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"230":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"284":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.1622776601683795},"468":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":8,"docs":{"11":{"tf":2.0},"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.4142135623730951},"208":{"tf":1.0},"34":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":6,"docs":{"191":{"tf":1.0},"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"247":{"tf":1.0},"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":3,"docs":{"17":{"tf":1.0},"200":{"tf":1.0},"374":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"232":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":5,"docs":{"174":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"75":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"x":{"=":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"130":{"tf":1.7320508075688772},"473":{"tf":1.0},"87":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":2.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"462":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"219":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"39":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"490":{"tf":1.0}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":6,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"279":{"tf":1.0},"44":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":37,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"242":{"tf":2.0},"243":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"295":{"tf":3.1622776601683795},"299":{"tf":2.23606797749979},"301":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"508":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"145":{"tf":1.0},"174":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":31,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"38":{"tf":1.4142135623730951},"391":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"\"":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"235":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"286":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"439":{"tf":1.0},"466":{"tf":2.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":1,"docs":{"490":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"152":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.4142135623730951},"283":{"tf":1.0},"30":{"tf":1.0},"374":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":2.0},"444":{"tf":1.0},"466":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"242":{"tf":1.0},"281":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0}},"t":{"df":11,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"458":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.4142135623730951},"468":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"242":{"tf":1.0},"267":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"420":{"tf":1.0},"421":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":44,"docs":{"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0},"484":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"484":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"285":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"107":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"225":{"tf":1.0},"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"211":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"s":{"\"":{":":{"1":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"128":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"196":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":2.449489742783178},"391":{"tf":1.0},"397":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":28,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":2.23606797749979},"221":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"380":{"tf":1.0},"394":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}},"df":1,"docs":{"219":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"285":{"tf":1.4142135623730951},"299":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"503":{"tf":1.0},"71":{"tf":2.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":4,"docs":{"17":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"200":{"tf":1.4142135623730951},"285":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"467":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"183":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"104":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":49,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"286":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"472":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":2.449489742783178},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"462":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"175":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"498":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"471":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"213":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"420":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"398":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":15,"docs":{"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"245":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"q":{"a":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}},"df":1,"docs":{"299":{"tf":1.0}},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"318":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"292":{"tf":1.4142135623730951},"299":{"tf":2.23606797749979},"323":{"tf":1.0},"346":{"tf":1.0},"365":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":2.23606797749979}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"107":{"tf":1.0},"225":{"tf":2.6457513110645907},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"16":{"tf":1.0},"18":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"278":{"tf":1.7320508075688772},"29":{"tf":1.0},"338":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":2.23606797749979},"432":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":2.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"485":{"tf":1.0},"487":{"tf":2.449489742783178},"507":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":23,"docs":{"225":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"444":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":22,"docs":{"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"#":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"76":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"196":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"470":{"tf":1.0},"76":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"374":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"394":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"461":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":8,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"174":{"tf":2.23606797749979},"92":{"tf":2.23606797749979}},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"w":{"df":7,"docs":{"261":{"tf":1.0},"338":{"tf":1.0},"391":{"tf":2.0},"422":{"tf":1.0},"434":{"tf":1.4142135623730951},"461":{"tf":1.0},"81":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"8":{"7":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":5,"docs":{"174":{"tf":1.0},"231":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"463":{"tf":1.0},"466":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":16,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"178":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}},"i":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"m":{"df":1,"docs":{"484":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"242":{"tf":1.0},"299":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"174":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"110":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"422":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"69":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":2.0},"123":{"tf":1.7320508075688772},"14":{"tf":1.0},"144":{"tf":1.0},"165":{"tf":1.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"28":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"tf":2.0},"144":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"219":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"29":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"42":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":15,"docs":{"286":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":3.4641016151377544},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.6457513110645907},"443":{"tf":1.4142135623730951},"491":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":5,"docs":{"213":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"476":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"433":{"tf":1.0},"438":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":5,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"92":{"tf":1.0}},"t":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"216":{"tf":1.0},"421":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"141":{"tf":1.0},"420":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"278":{"tf":1.0},"508":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"465":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"223":{"tf":1.0},"273":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"439":{"tf":1.0},"497":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"118":{"tf":1.7320508075688772},"153":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"273":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"38":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}},"e":{"df":1,"docs":{"69":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":2.0},"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"333":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"424":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":56,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.449489742783178},"320":{"tf":1.7320508075688772},"321":{"tf":2.0},"322":{"tf":2.6457513110645907},"323":{"tf":2.449489742783178},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.449489742783178},"331":{"tf":2.0},"332":{"tf":2.0},"333":{"tf":2.6457513110645907},"334":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"365":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"394":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.6457513110645907},"424":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.8284271247461903},"435":{"tf":1.0},"436":{"tf":3.3166247903554},"437":{"tf":3.3166247903554},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"89":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":2.0},"120":{"tf":1.0},"144":{"tf":1.7320508075688772},"227":{"tf":2.0},"285":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":2.0},"398":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"277":{"tf":1.0},"299":{"tf":1.4142135623730951},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"420":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"8":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":4,"docs":{"219":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0}}}},"df":2,"docs":{"219":{"tf":1.0},"406":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"422":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":4,"docs":{"419":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"409":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"470":{"tf":1.0},"75":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"497":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"211":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"186":{"tf":1.0},"466":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"219":{"tf":1.0}}}}},"v":{"df":9,"docs":{"20":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"130":{"tf":1.0},"473":{"tf":1.0},"509":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"355":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"181":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"o":{"df":1,"docs":{"191":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"225":{"tf":2.449489742783178},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":2.0},"434":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":3.0},"501":{"tf":1.4142135623730951},"61":{"tf":2.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"284":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":20,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"174":{"tf":1.4142135623730951},"209":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.23606797749979},"434":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.0},"500":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"490":{"tf":2.449489742783178}},"t":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}},"q":{"df":1,"docs":{"72":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"122":{"tf":1.0},"219":{"tf":2.8284271247461903},"261":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":1.0},"299":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.4142135623730951},"365":{"tf":1.0},"391":{"tf":4.47213595499958},"394":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":27,"docs":{"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"334":{"tf":1.0},"374":{"tf":1.4142135623730951},"384":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}}}}},"s":{"\\":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"391":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"216":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.4142135623730951},"365":{"tf":1.0},"398":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"174":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":21,"docs":{"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"3":{"tf":1.0},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"430":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.23606797749979},"501":{"tf":1.0}}}}}},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0}}}}},"df":77,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"183":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":3.7416573867739413},"453":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":3.0},"52":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.0},"30":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}},"df":13,"docs":{"152":{"tf":1.4142135623730951},"240":{"tf":1.0},"323":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.0},"475":{"tf":1.0},"49":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"284":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":2.6457513110645907},"172":{"tf":1.7320508075688772},"90":{"tf":2.8284271247461903}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.7320508075688772},"172":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":15,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"141":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"345":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"219":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"391":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":2.0},"437":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"475":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"0":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"391":{"tf":1.0},"402":{"tf":1.4142135623730951},"501":{"tf":1.0}},"s":{"\"":{":":{"7":{"0":{"4":{"5":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"115":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"174":{"tf":4.0},"196":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.0},"439":{"tf":2.6457513110645907},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":3.4641016151377544}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"f":{"c":{"3":{"3":{"3":{"9":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"376":{"tf":3.0},"377":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":10,"docs":{"178":{"tf":1.0},"219":{"tf":1.0},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"424":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"74":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"242":{"tf":1.0},"405":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"179":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}},"p":{"c":{"df":3,"docs":{"17":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"434":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951}}}},"n":{"df":84,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.4142135623730951},"20":{"tf":1.0},"222":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.0},"357":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"401":{"tf":2.23606797749979},"403":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"47":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"487":{"tf":1.0}}},"df":35,"docs":{"211":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":3.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}}},"’":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"465":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"26":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"9":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"459":{"tf":1.0},"468":{"tf":1.4142135623730951},"470":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"118":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"147":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"278":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"439":{"tf":1.0},"490":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"253":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"236":{"tf":1.0},"355":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"213":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"346":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"299":{"tf":1.0},"386":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"120":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":2.6457513110645907},"450":{"tf":2.449489742783178}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"d":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":4,"docs":{"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"432":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"491":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"269":{"tf":1.0},"301":{"tf":1.0},"72":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":6,"docs":{"242":{"tf":1.4142135623730951},"261":{"tf":1.0},"268":{"tf":1.7320508075688772},"299":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"l":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"219":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"351":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"208":{"tf":1.0},"424":{"tf":1.0}}}}},"df":22,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"191":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.7320508075688772},"351":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"159":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"398":{"tf":1.0},"401":{"tf":1.0},"469":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"73":{"tf":1.0},"95":{"tf":1.7320508075688772}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":34,"docs":{"173":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.4142135623730951},"32":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"39":{"tf":1.0},"394":{"tf":1.0},"463":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"141":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"45":{"tf":1.0},"458":{"tf":1.7320508075688772},"463":{"tf":1.0},"490":{"tf":1.0},"501":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.4142135623730951},"24":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"507":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0}},"m":{"df":3,"docs":{"279":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"470":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"365":{"tf":1.0},"379":{"tf":1.0},"472":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"129":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"169":{"tf":1.0},"174":{"tf":1.7320508075688772},"18":{"tf":1.0},"219":{"tf":2.8284271247461903},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"3":{"tf":1.0},"338":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.0},"263":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":4,"docs":{"220":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"466":{"tf":1.0},"490":{"tf":1.4142135623730951}}}}},"t":{"df":13,"docs":{"114":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"276":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"113":{"tf":1.0},"376":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"209":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"447":{"tf":2.8284271247461903},"448":{"tf":16.34013463836819},"449":{"tf":30.083217912982647},"450":{"tf":102.43046421841503},"451":{"tf":4.69041575982343},"452":{"tf":7.937253933193772},"453":{"tf":17.349351572897472},"456":{"tf":4.898979485566356},"457":{"tf":4.898979485566356},"458":{"tf":6.48074069840786}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"242":{"tf":1.0},"469":{"tf":1.0}}}},"df":5,"docs":{"422":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0},"504":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"505":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"4":{"tf":1.4142135623730951},"448":{"tf":2.0},"449":{"tf":4.242640687119285},"450":{"tf":13.490737563232042},"451":{"tf":1.7320508075688772},"453":{"tf":2.449489742783178}}}}}},"v":{"df":8,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"53":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":15,"docs":{"219":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"47":{"tf":2.0},"474":{"tf":1.7320508075688772},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":79,"docs":{"196":{"tf":1.0},"213":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":2.0},"334":{"tf":2.6457513110645907},"335":{"tf":2.449489742783178},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":2.8284271247461903},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.7320508075688772},"398":{"tf":2.0},"400":{"tf":2.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":6.244997998398398},"456":{"tf":2.0},"457":{"tf":2.0},"47":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"64":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"t":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"–":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"—":{"df":0,"docs":{},"–":{"df":0,"docs":{},"“":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"“":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":56,"docs":{"10":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":2.0},"130":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"174":{"tf":4.58257569495584},"175":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.6457513110645907},"295":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":2.0},"472":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":2.0},"73":{"tf":3.3166247903554},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"92":{"tf":4.242640687119285}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"373":{"tf":1.0},"473":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"278":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}}},"x":{"df":1,"docs":{"497":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"497":{"tf":1.0},"498":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"152":{"tf":1.0}}},"2":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"152":{"tf":3.0},"179":{"tf":1.0},"229":{"tf":1.4142135623730951},"284":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"211":{"tf":1.0}}},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"466":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"466":{"tf":1.0}}},"r":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"350":{"tf":1.0},"351":{"tf":1.4142135623730951}}},"u":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"459":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"490":{"tf":1.0}}}}}},"df":0,"docs":{}}},"w":{"df":6,"docs":{"267":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"75":{"tf":1.0}},"n":{"df":3,"docs":{"285":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"6":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"116":{"tf":2.0},"30":{"tf":1.0}}}}}},"df":1,"docs":{"472":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"208":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"450":{"tf":2.449489742783178}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"14":{"tf":1.0},"159":{"tf":1.4142135623730951},"172":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"109":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":2.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"262":{"tf":1.0},"286":{"tf":1.0},"365":{"tf":1.0},"72":{"tf":2.23606797749979},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"182":{"tf":1.0},"183":{"tf":1.0},"261":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"424":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"11":{"tf":1.0},"179":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"361":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":4.898979485566356},"453":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"240":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"402":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"216":{"tf":1.0},"219":{"tf":1.0}}},"df":5,"docs":{"24":{"tf":1.0},"31":{"tf":1.0},"421":{"tf":1.0},"462":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"245":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"356":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"151":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.4142135623730951},"374":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"465":{"tf":1.7320508075688772}}}},"z":{"df":0,"docs":{},"e":{"df":14,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"242":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"242":{"tf":1.0},"285":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"465":{"tf":1.0}}}}}}}},"l":{"df":1,"docs":{"373":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}}},"df":19,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.7320508075688772},"174":{"tf":2.23606797749979},"175":{"tf":1.7320508075688772},"185":{"tf":1.0},"242":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"338":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"443":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"7":{"tf":1.7320508075688772},"92":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"\"":{":":{"3":{"6":{"0":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"420":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"211":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"227":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"484":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"a":{"d":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"341":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"376":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0}},"e":{"\"":{":":{"\"":{"2":{"0":{"2":{"2":{"df":1,"docs":{"381":{"tf":1.0}}},"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":42,"docs":{"196":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"334":{"tf":3.1622776601683795},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":2.8284271247461903},"346":{"tf":1.4142135623730951},"347":{"tf":2.6457513110645907},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":2.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.23606797749979},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"391":{"tf":2.0},"394":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"448":{"tf":1.7320508075688772},"450":{"tf":7.810249675906654},"456":{"tf":1.0},"457":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"k":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":1,"docs":{"311":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"497":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"285":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"40":{"tf":1.4142135623730951},"43":{"tf":1.0},"476":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"283":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":2.0}}}}},"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"356":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"v":{"df":2,"docs":{"490":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"1":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"0":{"0":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"6":{"7":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"490":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"49":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"463":{"tf":1.4142135623730951}}}}}}},"n":{"df":1,"docs":{"391":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"487":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"113":{"tf":1.0},"225":{"tf":1.0},"472":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"179":{"tf":1.0},"269":{"tf":1.7320508075688772},"28":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0}},"e":{"'":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"374":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":11,"docs":{"447":{"tf":1.0},"448":{"tf":5.0},"449":{"tf":9.16515138991168},"450":{"tf":31.160872901765767},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":5.291502622129181},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":2.0}}}},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"242":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0}}}}},"df":1,"docs":{"165":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"475":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"209":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":42,"docs":{"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"391":{"tf":1.4142135623730951},"434":{"tf":1.0},"444":{"tf":1.0},"59":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"df":15,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"174":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.7320508075688772},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"115":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"242":{"tf":1.4142135623730951},"299":{"tf":1.0},"431":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"n":{"d":{"df":8,"docs":{"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":3.1622776601683795},"228":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"14":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"9":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"476":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"r":{"c":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"174":{"tf":1.0},"225":{"tf":1.0},"244":{"tf":1.0},"302":{"tf":1.0},"409":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"216":{"tf":1.0},"225":{"tf":1.0}}}}}},"l":{"df":4,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"209":{"tf":1.0},"460":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":14,"docs":{"130":{"tf":2.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":2.6457513110645907},"151":{"tf":3.0},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0}}}},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.0},"332":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"163":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"162":{"tf":1.7320508075688772},"189":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":81,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":4.358898943540674},"124":{"tf":2.6457513110645907},"13":{"tf":1.0},"130":{"tf":2.449489742783178},"153":{"tf":2.8284271247461903},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.8284271247461903},"157":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":3.1622776601683795},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":2.8284271247461903},"168":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"170":{"tf":2.449489742783178},"171":{"tf":2.23606797749979},"172":{"tf":2.0},"174":{"tf":3.605551275463989},"175":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.449489742783178},"188":{"tf":3.7416573867739413},"189":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"31":{"tf":3.0},"318":{"tf":1.0},"32":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"33":{"tf":2.8284271247461903},"332":{"tf":1.7320508075688772},"34":{"tf":2.6457513110645907},"35":{"tf":2.8284271247461903},"355":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"432":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":3.7416573867739413},"440":{"tf":1.0},"441":{"tf":2.23606797749979},"442":{"tf":2.0},"443":{"tf":2.449489742783178},"444":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":3.7416573867739413},"91":{"tf":2.449489742783178},"92":{"tf":3.605551275463989}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"225":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"227":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}}},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"433":{"tf":1.0},"438":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"130":{"tf":1.7320508075688772},"17":{"tf":1.0},"22":{"tf":1.0},"242":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"169":{"tf":1.0},"178":{"tf":1.0},"424":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"484":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":87,"docs":{"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.0},"24":{"tf":1.0},"240":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"344":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"382":{"tf":1.0},"390":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.7320508075688772},"397":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"404":{"tf":2.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"107":{"tf":2.0},"123":{"tf":2.0},"268":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":32,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"129":{"tf":1.0},"174":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":2.0},"213":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"225":{"tf":2.0},"236":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"341":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"463":{"tf":1.0}}}}}}},"i":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"225":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"375":{"tf":1.0},"397":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"196":{"tf":1.0},"305":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772}}}}},"s":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"109":{"tf":1.0},"110":{"tf":2.6457513110645907},"120":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"321":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"497":{"tf":1.0},"53":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"(":{"1":{"_":{"0":{"0":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"23":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}}}}},"y":{"df":2,"docs":{"212":{"tf":1.0},"461":{"tf":1.0}}}},"d":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"471":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":4,"docs":{"106":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"118":{"tf":1.0}}},"t":{"df":1,"docs":{"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}},"o":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"1":{"0":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"183":{"tf":2.0},"242":{"tf":1.0},"283":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"508":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"24":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"165":{"tf":1.0},"219":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":2.23606797749979},"404":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"219":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"242":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"421":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":3.605551275463989},"450":{"tf":11.269427669584644},"451":{"tf":1.0},"453":{"tf":2.23606797749979},"47":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":2.0},"149":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"391":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.0}}},"i":{"df":2,"docs":{"219":{"tf":1.0},"279":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"391":{"tf":1.0},"475":{"tf":1.0}}}}}}},"df":1,"docs":{"465":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"219":{"tf":3.605551275463989},"422":{"tf":1.0},"429":{"tf":1.7320508075688772},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"196":{"tf":1.4142135623730951},"242":{"tf":2.0},"351":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"47":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"463":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"364":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"475":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"420":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":3.872983346207417},"449":{"tf":6.48074069840786},"450":{"tf":22.9128784747792},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":3.7416573867739413},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":21,"docs":{"206":{"tf":1.0},"218":{"tf":1.0},"459":{"tf":2.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"485":{"tf":1.0},"494":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":7,"docs":{"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"211":{"tf":1.0},"232":{"tf":1.0},"365":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"219":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}}},"t":{"df":10,"docs":{"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"191":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"461":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"219":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"377":{"tf":1.0},"491":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"278":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":15,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"284":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0}}},"k":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"151":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.7320508075688772}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":3.3166247903554}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"471":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"470":{"tf":1.0}}}},"m":{"df":3,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951}},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"421":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":30,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":6.48074069840786},"449":{"tf":11.789826122551595},"450":{"tf":40.54626986542659},"451":{"tf":2.0},"452":{"tf":3.605551275463989},"453":{"tf":6.782329983125268},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.8284271247461903},"470":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":1,"docs":{"420":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"159":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"24":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":2.0},"491":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"450":{"tf":3.3166247903554},"452":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":10,"docs":{"18":{"tf":1.0},"219":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772}},"h":{"df":1,"docs":{"420":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"219":{"tf":1.0},"227":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":2.23606797749979}},"u":{"d":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951}}},"df":22,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":2.0},"283":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"468":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"58":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"t":{"a":{"1":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"7":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"3":{"0":{"8":{"a":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"r":{"a":{"4":{"c":{"3":{"df":0,"docs":{},"e":{"6":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"d":{"0":{"df":0,"docs":{},"f":{"3":{"3":{"3":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"z":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"8":{"a":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"f":{"0":{"df":2,"docs":{"180":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"x":{"4":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"9":{"4":{"df":0,"docs":{},"g":{"0":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"9":{"a":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"m":{"8":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"z":{"df":0,"docs":{},"t":{"0":{"5":{"7":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"420":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"\"":{":":{"\"":{"d":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"219":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"490":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"475":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"141":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"174":{"tf":1.7320508075688772},"185":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"397":{"tf":1.0},"401":{"tf":1.0},"420":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.4142135623730951},"371":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"490":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.449489742783178},"191":{"tf":1.0},"242":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0}}},"y":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":3.0}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":2.0}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"2":{"0":{"df":1,"docs":{"373":{"tf":1.0}}},"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"1":{"3":{"4":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"227":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.4142135623730951},"301":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"211":{"tf":1.7320508075688772},"278":{"tf":4.358898943540674},"30":{"tf":1.0},"424":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.8284271247461903},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"b":{"d":{"df":4,"docs":{"220":{"tf":1.0},"225":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":5,"docs":{"299":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"475":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"459":{"tf":1.0},"490":{"tf":2.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"225":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"191":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"379":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"465":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":196,"docs":{"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.7320508075688772},"211":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"237":{"tf":2.449489742783178},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.8284271247461903},"245":{"tf":3.1622776601683795},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.449489742783178},"249":{"tf":2.6457513110645907},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":2.449489742783178},"254":{"tf":2.449489742783178},"255":{"tf":2.449489742783178},"256":{"tf":2.449489742783178},"257":{"tf":2.449489742783178},"258":{"tf":2.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":3.0},"303":{"tf":3.3166247903554},"304":{"tf":1.7320508075688772},"305":{"tf":2.23606797749979},"306":{"tf":2.6457513110645907},"307":{"tf":2.8284271247461903},"308":{"tf":2.6457513110645907},"309":{"tf":2.8284271247461903},"310":{"tf":2.8284271247461903},"311":{"tf":2.8284271247461903},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":2.6457513110645907},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"415":{"tf":2.23606797749979},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":4.123105625617661},"470":{"tf":2.449489742783178},"471":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"490":{"tf":1.0},"59":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"234":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"364":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"389":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"211":{"tf":1.4142135623730951},"258":{"tf":1.0},"309":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"417":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{",":{"\"":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"106":{"tf":1.0},"130":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"72":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"22":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"484":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":3,"docs":{"141":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"476":{"tf":1.0},"490":{"tf":1.0}}}}},"’":{"df":4,"docs":{"156":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"281":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"55":{"tf":1.0}}},"k":{"df":5,"docs":{"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"424":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"{":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"232":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.6457513110645907},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":7.745966692414834},"453":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"129":{"tf":1.0},"139":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"498":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"279":{"tf":1.0},"432":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"(":{"5":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"36":{"tf":1.0},"432":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"338":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"196":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0},"430":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"504":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"u":{"df":1,"docs":{"209":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":1,"docs":{"430":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":69,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"215":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"24":{"tf":2.0},"242":{"tf":2.0},"268":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":2.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"424":{"tf":2.449489742783178},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":6.782329983125268},"449":{"tf":12.609520212918492},"450":{"tf":42.8485705712571},"451":{"tf":2.0},"452":{"tf":3.3166247903554},"453":{"tf":7.280109889280518},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"465":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"484":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"374":{"tf":1.0},"475":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"123":{"tf":2.0},"424":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"472":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":2.0},"126":{"tf":1.4142135623730951},"18":{"tf":1.0},"219":{"tf":3.1622776601683795},"23":{"tf":1.0},"261":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"286":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"242":{"tf":1.0},"391":{"tf":1.0},"491":{"tf":1.0}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":5,"docs":{"237":{"tf":1.0},"285":{"tf":2.0},"47":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.6457513110645907}}},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"466":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"420":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":13,"docs":{"174":{"tf":1.7320508075688772},"242":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":3.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"346":{"tf":2.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.7320508075688772},"394":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"178":{"tf":1.0}}}},"l":{"df":1,"docs":{"420":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"196":{"tf":1.0},"450":{"tf":2.6457513110645907}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"460":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":32,"docs":{"129":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":2.23606797749979},"36":{"tf":1.0},"361":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":5.0990195135927845},"453":{"tf":1.0},"491":{"tf":1.7320508075688772},"88":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"301":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"335":{"tf":1.0},"391":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"191":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"183":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":13,"docs":{"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"47":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":17,"docs":{"107":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":2.449489742783178},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"174":{"tf":2.6457513110645907},"212":{"tf":1.0},"299":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":3.1622776601683795},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"219":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"490":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"183":{"tf":1.0},"225":{"tf":1.4142135623730951},"285":{"tf":1.0},"47":{"tf":1.0},"490":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"k":{"df":8,"docs":{"227":{"tf":1.4142135623730951},"277":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"465":{"tf":1.4142135623730951},"470":{"tf":2.0},"476":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":79,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"129":{"tf":4.123105625617661},"130":{"tf":4.898979485566356},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":2.6457513110645907},"140":{"tf":1.7320508075688772},"141":{"tf":3.4641016151377544},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"144":{"tf":2.8284271247461903},"149":{"tf":3.3166247903554},"15":{"tf":1.4142135623730951},"151":{"tf":3.1622776601683795},"156":{"tf":2.0},"158":{"tf":2.6457513110645907},"168":{"tf":2.6457513110645907},"169":{"tf":1.4142135623730951},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"228":{"tf":2.449489742783178},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"278":{"tf":2.449489742783178},"28":{"tf":1.0},"295":{"tf":2.0},"37":{"tf":1.0},"374":{"tf":2.8284271247461903},"420":{"tf":1.4142135623730951},"422":{"tf":2.449489742783178},"432":{"tf":1.0},"434":{"tf":2.449489742783178},"444":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}}}},"/":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.4142135623730951},"138":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"347":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"225":{"tf":1.0},"24":{"tf":1.0},"282":{"tf":2.0},"31":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"391":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"174":{"tf":3.3166247903554},"92":{"tf":2.8284271247461903}}},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"130":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"470":{"tf":1.0}}}}},"df":19,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"490":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"216":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"419":{"tf":1.0},"450":{"tf":2.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"228":{"tf":1.0},"300":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"391":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"208":{"tf":1.4142135623730951},"225":{"tf":2.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"34":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"76":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":5,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"284":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"468":{"tf":1.0}}},"n":{"df":2,"docs":{"227":{"tf":1.0},"461":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"188":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":25,"docs":{"141":{"tf":1.0},"15":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"424":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"242":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"158":{"tf":2.0},"168":{"tf":2.0},"172":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"n":{"df":1,"docs":{"286":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"461":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"2":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"_":{"1":{"2":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"102":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"174":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":2.0},"196":{"tf":1.4142135623730951},"210":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.4142135623730951},"334":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"37":{"tf":1.4142135623730951},"391":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":2.0},"448":{"tf":14.0},"449":{"tf":25.317977802344327},"450":{"tf":86.78133439859057},"451":{"tf":4.0},"452":{"tf":6.782329983125268},"453":{"tf":14.594519519326424},"456":{"tf":4.242640687119285},"457":{"tf":4.242640687119285},"458":{"tf":5.5677643628300215},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":2.449489742783178},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"53":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":2.0}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"u":{".":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"471":{"tf":1.0}}},"df":1,"docs":{"286":{"tf":3.4641016151377544}},"i":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"402":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"486":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"391":{"tf":2.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"424":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"183":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"285":{"tf":1.4142135623730951},"307":{"tf":1.0},"364":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"106":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"465":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":27,"docs":{"418":{"tf":2.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.23606797749979},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"107":{"tf":1.0},"15":{"tf":1.4142135623730951},"386":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0}}}},"t":{"df":4,"docs":{"242":{"tf":1.4142135623730951},"277":{"tf":1.0},"470":{"tf":1.0},"7":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"391":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"47":{"tf":1.4142135623730951},"69":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"225":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"439":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"503":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"225":{"tf":1.0},"23":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":3,"docs":{"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":2.8284271247461903}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"504":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"228":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"490":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"503":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"318":{"tf":1.7320508075688772},"329":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"10":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"299":{"tf":1.4142135623730951},"334":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":23,"docs":{"165":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":2,"docs":{"219":{"tf":1.7320508075688772},"391":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"470":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":25,"docs":{"102":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"394":{"tf":1.0},"44":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":138,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":2.8284271247461903},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"28":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.0},"391":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"424":{"tf":1.7320508075688772},"44":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":7.54983443527075},"449":{"tf":13.45362404707371},"450":{"tf":46.57252408878007},"451":{"tf":2.23606797749979},"452":{"tf":3.872983346207417},"453":{"tf":7.745966692414834},"456":{"tf":2.449489742783178},"457":{"tf":2.449489742783178},"458":{"tf":3.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":2.449489742783178},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.6457513110645907},"47":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":2.449489742783178},"490":{"tf":1.7320508075688772},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":2.23606797749979},"79":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"300":{"tf":1.0},"359":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"465":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"1":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":144,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"460":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"230":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"374":{"tf":1.0},"401":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":10,"docs":{"237":{"tf":1.7320508075688772},"261":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"406":{"tf":1.0},"450":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"162":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"33":{"tf":1.0}}},"4":{"df":1,"docs":{"33":{"tf":1.0}}},"df":18,"docs":{"108":{"tf":2.449489742783178},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"174":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"35":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}}}},"v":{"0":{"df":33,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"1":{"df":3,"docs":{"478":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.0}}},"3":{"df":1,"docs":{"72":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"356":{"tf":2.23606797749979},"357":{"tf":1.7320508075688772},"358":{"tf":2.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"450":{"tf":1.7320508075688772}},"|":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":33,"docs":{"149":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"208":{"tf":1.0},"219":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"244":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"391":{"tf":1.0},"409":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.8284271247461903},"424":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"436":{"tf":2.449489742783178},"437":{"tf":2.449489742783178},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":48,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.8284271247461903},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":2.0},"174":{"tf":5.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"261":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"346":{"tf":1.0},"370":{"tf":1.4142135623730951},"376":{"tf":1.0},"424":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"484":{"tf":1.0},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":1.4142135623730951},"92":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"285":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"235":{"tf":1.0},"242":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"386":{"tf":1.0},"470":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"475":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"191":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"267":{"tf":1.0},"299":{"tf":1.0},"361":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"10":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"t":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"487":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"169":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"420":{"tf":1.7320508075688772},"466":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0}},"f":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"72":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":2.0},"20":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"325":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.7320508075688772},"351":{"tf":1.0},"409":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"3":{".":{"6":{"df":1,"docs":{"391":{"tf":1.0}}},"8":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"107":{"tf":1.4142135623730951},"174":{"tf":1.0},"219":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":3.0},"322":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"398":{"tf":1.0},"460":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":2.0},"491":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}},"i":{"a":{"df":14,"docs":{"160":{"tf":1.0},"174":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"242":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"229":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":3,"docs":{"242":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":2.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"24":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"406":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}}},"m":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"401":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}},"t":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"196":{"tf":1.4142135623730951},"237":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":5.385164807134504},"456":{"tf":2.0},"457":{"tf":2.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":48,"docs":{"361":{"tf":2.23606797749979},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"399":{"tf":2.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"450":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"321":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"128":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"149":{"tf":1.0},"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"1":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"\"":{":":{"4":{"df":1,"docs":{"373":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"373":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"374":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":73,"docs":{"127":{"tf":2.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"147":{"tf":3.1622776601683795},"148":{"tf":2.449489742783178},"149":{"tf":4.898979485566356},"150":{"tf":1.0},"151":{"tf":5.0},"152":{"tf":4.123105625617661},"174":{"tf":1.0},"191":{"tf":3.872983346207417},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"237":{"tf":1.0},"242":{"tf":1.0},"283":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"299":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.4142135623730951},"373":{"tf":3.7416573867739413},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":2.8284271247461903},"377":{"tf":2.0},"379":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"391":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":2.449489742783178},"424":{"tf":3.3166247903554},"447":{"tf":1.0},"448":{"tf":6.928203230275509},"449":{"tf":12.884098726725126},"450":{"tf":43.40506882842141},"451":{"tf":2.0},"452":{"tf":3.0},"453":{"tf":7.416198487095663},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":3.0},"95":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"149":{"tf":1.4142135623730951},"191":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":1,"docs":{"386":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{":":{"4":{"5":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"\"":{":":{"\"":{"2":{"0":{"2":{"3":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":2,"docs":{"448":{"tf":1.0},"450":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"189":{"tf":1.0},"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"m":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"3":{"df":0,"docs":{},"q":{"9":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"2":{"2":{"df":0,"docs":{},"x":{"9":{"a":{"4":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"7":{"a":{"3":{"df":0,"docs":{},"k":{"9":{"8":{"7":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"6":{"a":{"8":{"df":0,"docs":{},"v":{"0":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"102":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"167":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"219":{"tf":1.0},"422":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"b":{"_":{"df":0,"docs":{},"i":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"1":{"0":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"237":{"tf":1.0},"278":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"1":{"3":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"8":{"0":{"0":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"213":{"tf":2.449489742783178},"232":{"tf":1.0},"242":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"273":{"tf":2.6457513110645907},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"292":{"tf":2.6457513110645907},"294":{"tf":1.0},"295":{"tf":2.449489742783178},"37":{"tf":1.0},"370":{"tf":2.8284271247461903},"371":{"tf":1.0},"374":{"tf":1.0},"386":{"tf":2.23606797749979},"450":{"tf":4.358898943540674},"452":{"tf":1.7320508075688772},"458":{"tf":2.8284271247461903},"81":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":24,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"237":{"tf":1.0},"374":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"473":{"tf":1.0},"476":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.7320508075688772},"62":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"463":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"64":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}},"y":{"df":16,"docs":{"141":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"268":{"tf":1.0},"36":{"tf":1.0},"399":{"tf":1.0},"431":{"tf":1.0},"45":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"df":9,"docs":{"459":{"tf":1.0},"474":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"351":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":1.0},"287":{"tf":1.0},"3":{"tf":1.0},"497":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"174":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"397":{"tf":1.0},"4":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"476":{"tf":1.4142135623730951},"504":{"tf":1.0},"72":{"tf":1.4142135623730951}}}},"’":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"461":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":4,"docs":{"13":{"tf":1.0},"174":{"tf":1.4142135623730951},"219":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"219":{"tf":1.4142135623730951},"394":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"225":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"145":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"369":{"tf":1.0},"472":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"211":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"196":{"tf":1.0},"219":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"173":{"tf":1.0},"215":{"tf":1.0}}}},"t":{"df":8,"docs":{"129":{"tf":2.449489742783178},"130":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":3.1622776601683795},"142":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"210":{"tf":2.0}},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"439":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"467":{"tf":1.4142135623730951},"500":{"tf":1.0},"506":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951},"208":{"tf":1.0},"285":{"tf":1.4142135623730951},"317":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"498":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":6,"docs":{"242":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"d":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":35,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":4,"docs":{"17":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"287":{"tf":1.0},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":2.23606797749979},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"227":{"tf":1.0},"465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"462":{"tf":1.7320508075688772},"466":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"130":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"422":{"tf":1.4142135623730951},"459":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"130":{"tf":1.0},"3":{"tf":1.0},"431":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"262":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{".":{"5":{"0":{"9":{"df":4,"docs":{"285":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"490":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"191":{"tf":1.0},"225":{"tf":1.0},"279":{"tf":2.0},"299":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0}}},"y":{".":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":26,"docs":{"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"148":{"tf":1.0},"185":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"462":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":1,"docs":{"292":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"376":{"tf":1.0},"391":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"424":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"471":{"tf":1.0}}}}}},"’":{"df":1,"docs":{"59":{"tf":1.0}}}},"’":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":7,"docs":{"460":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0}}}}}}},"z":{"df":2,"docs":{"35":{"tf":1.0},"462":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"\"":{":":{"1":{"0":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":15,"docs":{"115":{"tf":2.0},"149":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.0},"370":{"tf":1.0},"468":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"174":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"title":{"root":{"0":{"df":2,"docs":{"181":{"tf":1.0},"280":{"tf":1.0}}},"1":{"df":1,"docs":{"503":{"tf":1.0}}},"2":{"df":1,"docs":{"504":{"tf":1.0}}},"3":{"df":1,"docs":{"505":{"tf":1.0}}},"4":{"df":1,"docs":{"506":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"32":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"d":{"a":{"df":3,"docs":{"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}},"d":{"df":4,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"391":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"173":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":25,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"467":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"245":{"tf":1.0},"303":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"467":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"286":{"tf":1.0}}},"o":{"df":1,"docs":{"44":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":1,"docs":{"233":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"57":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"0":{"df":1,"docs":{"370":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"283":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}},"’":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"181":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"38":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"490":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":20,"docs":{"234":{"tf":1.0},"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"425":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"149":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"287":{"tf":1.0},"424":{"tf":1.0},"484":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"307":{"tf":1.0},"413":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":10,"docs":{"155":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"139":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"144":{"tf":1.0},"403":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"267":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"392":{"tf":1.0},"456":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.0},"316":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"471":{"tf":1.0},"474":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"495":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"217":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"6":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"486":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"241":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"385":{"tf":1.0},"485":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"496":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":4,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"484":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"462":{"tf":1.0},"467":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"134":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"39":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"376":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"213":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"448":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"35":{"tf":1.0},"91":{"tf":1.0}}},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"277":{"tf":1.0},"432":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"423":{"tf":1.0},"509":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":1,"docs":{"472":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"396":{"tf":1.0},"446":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"399":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"257":{"tf":1.0},"311":{"tf":1.0},"416":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"499":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"491":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"403":{"tf":1.0},"404":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"475":{"tf":1.0},"476":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"180":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"38":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"476":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"478":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"393":{"tf":1.0},"480":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"227":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"258":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"381":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0}}}}}}},"d":{"df":3,"docs":{"177":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"366":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"231":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"474":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"287":{"tf":1.0},"459":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"216":{"tf":1.0},"464":{"tf":1.0},"502":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"432":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}}},"df":2,"docs":{"380":{"tf":1.0},"428":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"113":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"493":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":1.0},"83":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"176":{"tf":1.0},"186":{"tf":1.0},"368":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"239":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"302":{"tf":1.0},"424":{"tf":1.0},"450":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"407":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"df":1,"docs":{"191":{"tf":1.0}},"f":{"a":{"c":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"474":{"tf":1.0}}}}},"j":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"235":{"tf":1.0},"251":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":6,"docs":{"205":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"458":{"tf":1.0}}},"ö":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"153":{"tf":1.0},"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"y":{"df":4,"docs":{"102":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"54":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"3":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"242":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0},"405":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"259":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"n":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"224":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"453":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"388":{"tf":1.0},"393":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"351":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"407":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":3,"docs":{"226":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"4":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":13,"docs":{"123":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"311":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":1,"docs":{"462":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"377":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":25,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"262":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"166":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"138":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"465":{"tf":1.0},"470":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"16":{"tf":1.0},"284":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"446":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"164":{"tf":1.0},"242":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"253":{"tf":1.0},"256":{"tf":1.0},"415":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.0},"372":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":11,"docs":{"121":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"109":{"tf":1.0}}}},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"247":{"tf":1.0},"305":{"tf":1.0},"411":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"420":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"152":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"128":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"151":{"tf":1.0},"29":{"tf":1.0},"467":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":18,"docs":{"240":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"410":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"465":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"160":{"tf":1.0}},"r":{"df":10,"docs":{"187":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"509":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"490":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"499":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"105":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"391":{"tf":1.0},"428":{"tf":1.0},"49":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"461":{"tf":1.0}}}},"n":{"df":18,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"500":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"143":{"tf":1.0},"402":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"431":{"tf":1.0},"457":{"tf":1.0},"474":{"tf":1.0}}}},"i":{"c":{"df":14,"docs":{"313":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"378":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.0},"454":{"tf":1.0},"76":{"tf":1.0}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"335":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"125":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"134":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":23,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"123":{"tf":1.0}},"e":{"df":3,"docs":{"114":{"tf":1.0},"279":{"tf":1.0},"444":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"354":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0}}}}},"u":{"df":1,"docs":{"403":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"459":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"510":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"485":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"278":{"tf":1.0}}}},"x":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":36,"docs":{"190":{"tf":1.0},"211":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"450":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"211":{"tf":1.0},"309":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"466":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"373":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}}},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"40":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"444":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"18":{"tf":1.0},"468":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"418":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"338":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":5,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":1.0}}}}}},"v":{"0":{"df":4,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}}},"1":{"df":2,"docs":{"478":{"tf":1.0},"483":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"408":{"tf":1.0},"409":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":16,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"191":{"tf":1.4142135623730951},"283":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"r":{"df":2,"docs":{"436":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"162":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"488":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"504":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"165":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}}},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"474":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"AND","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file